Search
Search CSS
Search CSS by entering your search text above.
CSS
url()

url()The url() CSS function is used to include a file. The parameter is an absolute URL, a relative URL, a blob URL, or a data URL. The url() function can be passed as a parameter of another CSS funct..

12:22 am, February 22, 2022
CSS
<url>

url()The url() CSS function is used to include a file. The parameter is an absolute URL, a relative URL, a blob URL, or a data URL. The url() function can be passed as a parameter of another CSS funct..

12:22 am, February 22, 2022
CSS
text-transform

text-transformThe text-transform CSS property specifies how to capitalize an element's text. It can be used to make text appear in all-uppercase or all-lowercase, or with each word capitalized. It als..

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

systemThe system descriptor specifies the algorithm to be used for converting the integer value of a counter to a string representation. It is used in a @counter-style to define the behavior of the de..

12:22 am, February 22, 2022
CSS
@supports

@supportsThe @supports CSS at-rule lets you specify declarations that depend on a browser's support for one or more specific CSS features. This is called a feature query. The rule may be placed at the..

12:22 am, February 22, 2022
CSS
scrollbar-width

scrollbar-widthThe scrollbar-width property allows the author to set the maximum thickness of an element's scrollbars when they are shown.Syntax/* Keyword values */ scrollbar-width: auto; scrollbar-wi..

12:22 am, February 22, 2022
CSS
scrollbar-color

scrollbar-colorThe scrollbar-color CSS property sets the color of the scrollbar track and thumb. The track refers to the background of the scrollbar, which is generally fixed regardless of the scrolli..

12:22 am, February 22, 2022
CSS
scroll-snap-type

scroll-snap-typeThe scroll-snap-type CSS property sets how strictly snap points are enforced on the scroll container in case there is one. Specifying any precise animations or physics used to enforce ..

12:22 am, February 22, 2022
CSS
scroll-snap-stop

scroll-snap-stopThe scroll-snap-stop CSS property defines whether the scroll container is allowed to "pass over" possible snap positions. /* Keyword values */ scroll-snap-stop: normal; scroll-snap-sto..

12:22 am, February 22, 2022
CSS
scroll-margin-inline-start

scroll-margin-inline-startThe scroll-margin-inline-start property defines the margin of the scroll snap area at the start of the inline dimension that is used for snapping this box to the snapport. Th..

12:22 am, February 22, 2022
CSS
scroll-margin-inline-end

scroll-margin-inline-endThe scroll-margin-inline-end property defines the margin of the scroll snap area at the end of the inline dimension that is used for snapping this box to the snapport. The scro..

12:22 am, February 22, 2022
CSS
scroll-margin-inline

scroll-margin-inlineThe scroll-margin-inline shorthand property sets the scroll margins of an element in the inline dimension.Constituent propertiesThis property is a shorthand for the following CSS p..

12:22 am, February 22, 2022
CSS
scroll-margin

scroll-marginThe scroll-margin shorthand property sets all of the scroll margins of an element at once, assigning values much like the margin property does for margins of an element.Constituent proper..

12:22 am, February 22, 2022
CSS
place-self

place-selfThe place-self CSS shorthand property allows you to align an individual item in both the block and inline directions at once (i.e. the align-self and justify-self properties) in a relevant l..

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

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

12:22 am, February 22, 2022
CSS
Pseudo-classes

Pseudo-classesA CSS pseudo-class is a keyword added to a selector that specifies a special state of the selected element(s). For example, :hover can be used to change a button's color when the user's ..

12:22 am, February 22, 2022
CSS
:only-of-type

:only-of-typeThe :only-of-type CSS pseudo-class represents an element that has no siblings of the same type. /* Selects each <p>, but only if it is the */ /* only <p> element inside its pa..

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

:only-childThe :only-child CSS pseudo-class represents an element without any siblings. This is the same as :first-child:last-child or :nth-child(1):nth-last-child(1), but with a lower specificity. /*..

12:22 am, February 22, 2022
CSS
offset-rotate

offset-rotateThe offset-rotate CSS property defines the orientation/direction of the element as it is positioned along the offset-path. Note: Early versions of the spec called this property motion-..

12:22 am, February 22, 2022
CSS
:nth-of-type

:nth-of-type()The :nth-of-type() CSS pseudo-class matches elements based on their position among siblings of the same type (tag name). /* Selects every fourth <p> element among any group of s..

12:22 am, February 22, 2022
CSS
:nth-last-of-type

:nth-last-of-type()The :nth-last-of-type() CSS pseudo-class matches elements based on their position among siblings of the same type (tag name), counting from the end. /* Selects every fourth <p>..

12:22 am, February 22, 2022
CSS
:nth-last-col

:nth-last-colExperimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production. The :nth-last-col() CSS pseudo-class is designed for table..

12:22 am, February 22, 2022
CSS
:nth-last-child

:nth-last-child()The :nth-last-child() CSS pseudo-class matches elements based on their position among a group of siblings, counting from the end. /* Selects every fourth element among any group of..

12:22 am, February 22, 2022
CSS
:nth-col

:nth-colExperimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production. The :nth-col() CSS pseudo-class is designed for tables and grid..

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

:nth-child()The :nth-child() CSS pseudo-class matches elements based on their position among a group of siblings. /* Selects the second <li> element in a list */ li:nth-child(2) { color: lime;..

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

min()The min() CSS function lets you set the smallest (most negative) value from a list of comma-separated expressions as the value of a CSS property value. The min() function can be used anywhere a &..

12:22 am, February 22, 2022
CSS
@media

@mediaThe @media CSS at-rule can be used to apply part of a style sheet based on the result of one or more media queries. With it, you specify a media query and a block of CSS to apply to the document..

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

max()The max() CSS function lets you set the largest (most positive) value from a list of comma-separated expressions as the value of a CSS property value. The max() function can be used anywhere a &l..

12:22 am, February 22, 2022
CSS
:last-of-type

:last-of-typeThe :last-of-type CSS pseudo-class represents the last element of its type among a group of sibling elements. /* Selects any <p> that is the last element of its type among its si..

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

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

12:22 am, February 22, 2022
CSS
justify-self

justify-selfThe CSS justify-self property sets the way a box is justified inside its alignment container along the appropriate axis. The effect of this property is dependent of the layout mode we are ..

12:22 am, February 22, 2022
CSS
initial-letter-align

initial-letter-alignExperimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production. The initial-letter-align CSS property specifies the..

12:22 am, February 22, 2022
CSS
grid-row-start

grid-row-startThe grid-row-start CSS property specifies a grid item's start position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifyin..

12:22 am, February 22, 2022
CSS
grid-row-end

grid-row-endThe grid-row-end CSS property specifies a grid item's end position within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifying the ..

12:22 am, February 22, 2022
CSS
grid-row

grid-rowThe grid-row CSS shorthand property specifies a grid item's size and location within the grid row by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specifyi..

12:22 am, February 22, 2022
CSS
grid-column-start

grid-column-startThe grid-column-start CSS property specifies a grid item's start position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement. This sta..

12:22 am, February 22, 2022
CSS
grid-column-end

grid-column-endThe grid-column-end CSS property specifies a grid item's end position within the grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby specif..

12:22 am, February 22, 2022
CSS
grid-column

grid-columnThe grid-column CSS shorthand property specifies a grid item's size and location within a grid column by contributing a line, a span, or nothing (automatic) to its grid placement, thereby s..

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

font-weightThe font-weight CSS descriptor allows authors to specify font weights for the fonts specified in the @font-face rule. The font-weight property can separately be used to set how thick or thi..

12:22 am, February 22, 2022
CSS
font-variant-position

font-variant-positionThe font-variant-position CSS property controls the use of alternate, smaller glyphs that are positioned as superscript or subscript. The glyphs are positioned relative to the bas..

12:22 am, February 22, 2022
CSS
font-variant-caps

font-variant-capsThe font-variant-caps CSS property controls the use of alternate glyphs for capital letters. When a given font includes capital letter glyphs of multiple different sizes, this propert..

12:22 am, February 22, 2022
CSS
font-synthesis

font-synthesisThe font-synthesis CSS property controls which missing typefaces, bold, italic, or small-caps, may be synthesized by the browser.Syntaxfont-synthesis: none; font-synthesis: weight; font-..

12:22 am, February 22, 2022
CSS
font-style

font-styleThe font-style CSS property sets whether a font should be styled with a normal, italic, or oblique face from its font-family. Italic font faces are generally cursive in nature, usually using..

12:22 am, February 22, 2022
CSS
font-language-override

font-language-overrideThe font-language-override CSS property controls the use of language-specific glyphs in a typeface. /* Keyword value */ font-language-override: normal; /* <string> values ..

12:22 am, February 22, 2022
CSS
font-kerning

font-kerningThe font-kerning CSS property sets the use of the kerning information stored in a font. Kerning defines how letters are spaced. In well-kerned fonts, this feature makes character spacing m..

12:22 am, February 22, 2022
CSS
:first-of-type

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

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

::first-line (:first-line)The ::first-line CSS pseudo-element applies styles to the first line of a block-level element. /* Selects the first line of a <p> */ p::first-line { color: red; } Th..

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
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
@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
clamp()

clamp()The clamp() CSS function clamps a value between an upper and lower bound. clamp() enables selecting a middle value within a range of values between a defined minimum and maximum. It takes three..

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

calc()The calc() CSS function lets you perform calculations when specifying CSS property values. It can be used anywhere a <length>, <frequency>, <angle>, <time>, <percentag..

12:22 am, February 22, 2022
CSS
border-top-width

border-top-widthThe border-top-width CSS property sets the width of the top border of an element.Syntax/* Keyword values */ border-top-width: thin; border-top-width: medium; border-top-width: thick; ..

12:22 am, February 22, 2022
CSS
border-right-width

border-right-widthThe border-right-width CSS property sets the width of the right border of an element.Syntax/* Keyword values */ border-right-width: thin; border-right-width: medium; border-right-wid..

12:22 am, February 22, 2022
CSS
border-left-width

border-left-widthThe border-left-width CSS property sets the width of the left border of an element.Syntax/* Keyword values */ border-left-width: thin; border-left-width: medium; border-left-width: th..

12:22 am, February 22, 2022
CSS
border-bottom-width

border-bottom-widthThe border-bottom-width CSS property sets the width of the bottom border of an element.Syntax/* Keyword values */ border-bottom-width: thin; border-bottom-width: medium; border-bott..

12:22 am, February 22, 2022
CSS
align-self

align-selfThe align-self CSS property overrides a grid or flex item's align-items value. In Grid, it aligns the item inside the grid area. In Flexbox, it aligns the item on the cross axis. The propert..

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
"Let us prepare our minds as if we'd come to the very end of life. Let us postpone nothing. Let us balance life's books each day ... The one who puts the finishing touches on their life each day is never short of time."
Seneca
Random CSS Property

scroll-margin-left

The scroll-margin-left property defines the left margin of the scroll snap area that is used for snapping this box to the snapport. The scroll snap area is determined by taking the transformed border box, finding its rectangular bounding box (axis-aligned in the scroll container's coordinate space), then adding the specified outsets.
scroll-margin-left css reference