List CSS

Total Items found in CSS is 675.
A collection of css elements, selectors and descriptions of what they do.
CSS
contrast()

contrast()The contrast() CSS function adjusts the contrast of the input image. Its result is a <filter-function>.Syntaxcontrast(amount) Parameters amount The contrast of the result, spe..

12:22 am, February 22, 2022
CSS
&lt;counter&gt;

counter() The counter() CSS function returns a string representing the current value of the named counter, if there is one. It is generally used in the content property of pseudo-elements, but can..

12:22 am, February 22, 2022
CSS
counter-increment

counter-incrementThe counter-increment CSS property increases or decreases the value of a CSS counter by a given value. Note: The counter's value can be reset to an arbitrary number using the count..

12:22 am, February 22, 2022
CSS
counter-reset

counter-reset The counter-reset CSS property resets a CSS counter to a given value. This property will create a new counter or reversed counter with the given name on the specified element. No..

12:22 am, February 22, 2022
CSS
counter-set

counter-setThe counter-set CSS property sets a CSS counter to a given value. It manipulates the value of existing counters, and will only create new counters if there isn't already a counter of the gi..

12:22 am, February 22, 2022
CSS
@counter-style

@counter-styleThe @counter-style CSS at-rule lets you define counter styles that are not part of the predefined set of styles. A @counter-style rule defines how to convert a counter value into a strin..

12:22 am, February 22, 2022
CSS
counters()

counters()The counters() CSS function enables nested counters, returning a concatenated string representing the current values of the named counters, if there are any. The counters() function has two ..

12:22 am, February 22, 2022
CSS
cross-fade()

cross-fade() The cross-fade() CSS function can be used to blend two or more images at a defined transparency. It can be used for many simple image manipulations, such as tinting an image with a so..

12:22 am, February 22, 2022
CSS
cubic-bezier()

<easing-function>The <easing-function> CSS data type denotes a mathematical function that describes the rate at which a numerical value changes. This transition between two values may be a..

12:22 am, February 22, 2022
CSS
::cue

::cueThe ::cue CSS pseudo-element matches WebVTT cues within a selected element. This can be used to style captions and other cues in media with VTT tracks. ::cue { color: yellow; font-weight: bol..

12:22 am, February 22, 2022
CSS
::cue-region

::cue-regionExperimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production. The ::cue-region CSS pseudo-element matches WebVTT cues wit..

12:22 am, February 22, 2022
CSS
:current

:currentThe :current CSS pseudo-class selector is a time-dimensional pseudo-class that represents the element, or an ancestor of the element, that is currently being displayed. For example in a video ..

12:22 am, February 22, 2022
CSS
cursor

cursorThe cursor CSS property sets the mouse cursor, if any, to show when the mouse pointer is over an element. The cursor setting should inform users of the mouse operations that can be performed ..

12:22 am, February 22, 2022
CSS
&lt;custom-ident&gt;

<custom-ident>The <custom-ident> CSS data type denotes an arbitrary user-defined string used as an identifier. It is case-sensitive, and certain values are forbidden in various contexts to..

12:22 am, February 22, 2022
CSS
length#cap

<length>The <length> CSS data type represents a distance value. Lengths can be used in numerous CSS properties, such as width, height, margin, padding, border-width, font-size, and text-sh..

12:22 am, February 22, 2022
CSS
length#ch

<length>The <length> CSS data type represents a distance value. Lengths can be used in numerous CSS properties, such as width, height, margin, padding, border-width, font-size, and text-sh..

12:22 am, February 22, 2022
CSS
length#cm

<length>The <length> CSS data type represents a distance value. Lengths can be used in numerous CSS properties, such as width, height, margin, padding, border-width, font-size, and text-sh..

12:22 am, February 22, 2022
CSS
angle#deg

<angle>The <angle> CSS data type represents an angle value expressed in degrees, gradians, radians, or turns. It is used, for example, in <gradient>s and in some transform functions...

12:22 am, February 22, 2022
CSS
:default

:defaultThe :default CSS pseudo-class selects form elements that are the default in a group of related elements. What this selector matches is defined in HTML Standard §4.16.3 Pseudo-classes — it m..

12:22 am, February 22, 2022
CSS
:defined

:definedThe :defined CSS pseudo-class represents any element that has been defined. This includes any standard element built in to the browser, and custom elements that have been successfully defined ..

12:22 am, February 22, 2022
CSS
descent-override (@font-face)

descent-overrideThe descent-override CSS descriptor defines the descent metric for the font. The descent metric is the height below the baseline that CSS uses to lay out line boxes in an inline format..

12:22 am, February 22, 2022
CSS
&lt;dimension&gt;

<dimension>The <dimension> CSS data type represents a <number> with a unit attached to it, for example 10px. CSS uses dimensions to specify distances (<length>), durations (<..

12:22 am, February 22, 2022
CSS
:dir

:dir()The :dir() CSS pseudo-class matches elements based on the directionality of the text contained in them. /* Selects any element with right-to-left text */ :dir(rtl) { background-color: red; } ..

12:22 am, February 22, 2022
CSS
direction

directionThe direction CSS property sets the direction of text, table columns, and horizontal overflow. Use rtl for languages written from right to left (like Hebrew or Arabic), and ltr for those writ..

12:22 am, February 22, 2022
CSS
:disabled

:disabledThe :disabled CSS pseudo-class represents any disabled element. An element is disabled if it can't be activated (selected, clicked on, typed into, etc.) or accept focus. The element also has ..

12:22 am, February 22, 2022
CSS
display

displayThe display CSS property sets whether an element is treated as a block or inline element and the layout used for its children, such as flow layout, grid or flex. Formally, the display property ..

12:22 am, February 22, 2022
CSS
&lt;display-box&gt;

<display-box>These keywords define whether an element generates display boxes at all.SyntaxValid <display-box> values: contents These elements don't produce a specific box by the..

12:22 am, February 22, 2022
CSS
&lt;display-inside&gt;

<display-inside>These keywords specify the element's inner display type, which defines the type of formatting context that lays out its contents (assuming it is a non-replaced element). These ke..

12:22 am, February 22, 2022
CSS
&lt;display-internal&gt;

<display-internal>Some layout models such as table and ruby have a complex internal structure, with several different roles that their children and descendants can fill. This page defines those ..

12:22 am, February 22, 2022
CSS
&lt;display-legacy&gt;

<display-legacy>CSS 2 used a single-keyword syntax for the display property, requiring separate keywords for block-level and inline-level variants of the same layout mode. This page details thos..

12:22 am, February 22, 2022
CSS
&lt;display-listitem&gt;

<display-listitem>The list-item keyword causes the element to generate a ::marker pseudo-element with the content specified by its list-style properties (for example a bullet point) together wit..

12:22 am, February 22, 2022
CSS
&lt;display-outside&gt;

<display-outside>The <display-outside> keywords specify the element's outer display type, which is essentially its role in flow layout. These keywords are used as values of the display pro..

12:22 am, February 22, 2022
CSS
drop-shadow()

drop-shadow()The drop-shadow() CSS function applies a drop shadow effect to the input image. Its result is a <filter-function>. A drop shadow is effectively a blurred, offset version of the inpu..

12:22 am, February 22, 2022
CSS
resolution#dpcm

<resolution>The <resolution> CSS data type, used for describing resolutions in media queries, denotes the pixel density of an output device, i.e., its resolution. On screens, the units are..

12:22 am, February 22, 2022
CSS
resolution#dpi

<resolution>The <resolution> CSS data type, used for describing resolutions in media queries, denotes the pixel density of an output device, i.e., its resolution. On screens, the units are..

12:22 am, February 22, 2022
CSS
resolution#dppx

<resolution>The <resolution> CSS data type, used for describing resolutions in media queries, denotes the pixel density of an output device, i.e., its resolution. On screens, the units are..

12:22 am, February 22, 2022
CSS
element()

element()Experimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production. The element() CSS function defines an <image> value gene..

12:22 am, February 22, 2022
CSS
ellipse()

<basic-shape>The <basic-shape> CSS data type represents a shape used in the clip-path, shape-outside, and offset-path properties.SyntaxThe <basic-shape> data type is defined with one..

12:22 am, February 22, 2022
CSS
:empty

:emptyThe :empty CSS pseudo-class represents any element that has no children. Children can be either element nodes or text (including whitespace). Comments, processing instructions, and CSS content d..

12:22 am, February 22, 2022
CSS
empty-cells

empty-cellsThe empty-cells CSS property sets whether borders and backgrounds appear around <table> cells that have no visible content. This property has an effect only when the border-collapse p..

12:22 am, February 22, 2022
CSS
:enabled

:enabledThe :enabled CSS pseudo-class represents any enabled element. An element is enabled if it can be activated (selected, clicked on, typed into, etc.) or accept focus. The element also has a disa..

12:22 am, February 22, 2022
CSS
env()

env()The env() CSS function can be used to insert the value of a user agent-defined environment variable into your CSS, in a similar fashion to the var() function and custom properties. The difference..

12:22 am, February 22, 2022
CSS
length#em

<length>The <length> CSS data type represents a distance value. Lengths can be used in numerous CSS properties, such as width, height, margin, padding, border-width, font-size, and text-sh..

12:22 am, February 22, 2022
CSS
length#ex

<length>The <length> CSS data type represents a distance value. Lengths can be used in numerous CSS properties, such as width, height, margin, padding, border-width, font-size, and text-sh..

12:22 am, February 22, 2022
CSS
fallback (@counter-style)

fallbackThe fallback descriptor can be used to specify a counter style to fall back to if the current counter style cannot create a marker representation for a particular counter value.Syntax/* Keywor..

12:22 am, February 22, 2022
CSS
filter

filterThe filter CSS property applies graphical effects like blur or color shift to an element. Filters are commonly used to adjust the rendering of images, backgrounds, and borders. Included in the C..

12:22 am, February 22, 2022
CSS
&lt;filter-function&gt;

<filter-function>The <filter-function> CSS data type represents a graphical effect that can change the appearance of an input image. It is used in the filter and backdrop-filter properties..

12:22 am, February 22, 2022
CSS
:first

:firstThe :first CSS pseudo-class, used with the @page at-rule, represents the first page of a printed document. (See :first-child for general first element of a node.) /* Selects the first page when ..

12:22 am, February 22, 2022
CSS
:first-child

:first-childThe :first-child CSS pseudo-class represents the first element among a group of sibling elements. /* Selects any <p> that is the first element among its siblings */ p:first-child ..

12:22 am, February 22, 2022
CSS
::first-letter (:first-letter)

::first-letter (:first-letter)The ::first-letter CSS pseudo-element applies styles to the first letter of the first line of a block-level element, but only when not preceded by other content (such as ..

12:22 am, February 22, 2022
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote


Windows
Random CSS Property

border-bottom

The border-bottom shorthand CSS property sets an element's bottom border. It sets the values of border-bottom-width, border-bottom-style and border-bottom-color.
border-bottom css reference