flex
flex
The flex property is a sub-property of the Flexible Box Layout module. This is the shorthand for flex-grow, flex-shrink and […]
.element { flex: 1 1 100px; }
Continue Reading
font-weight
font-weight
The font-weight property sets the weight, or thickness, of a font and is dependent either on available font faces within […]
span { font-weight: 800; }
Continue Reading
font-family
font-family
The font-family property defines the font that is applied to the selected element. The font that is selected is not […]
Continue Reading
filter
filter
CSS Filters are a powerful tool that authors can use to achieve varying visual effects (sort of like Photoshop filters […]
Continue Reading
font-size-adjust
font-size-adjust
This property gives developers the ability to set the font-size of an element depending on the size of its lowercase […]
Continue Reading
font-feature-settings
font-feature-settings
This property gives us control over advanced typographic settings such as small caps, ligatures, and swashes. To activate them you […]
Continue Reading
fill
fill
The fill property in CSS is for filling in the color of a SVG shape. .eyeball { fill: red; } […]
Continue Reading
font-display
font-display
The font-display property defines how font files are loaded and displayed by the browser. It is applied to the @font-face […]
Continue Reading
font-variant-numeric
font-variant-numeric
The font-variant-numeric property in CSS supports the OpenType font format by specifying which numeric glyphs to use on a class, […]
.fraction { font-variant-numeric: diagonal-fractions; }
Continue Reading
font-synthesis
font-synthesis
The font-systhesis property in CSS gives the browser instructions for how to handle font bolded and italicized character when the […]
.intro { font-synthesis: weight style; }
Continue Reading
font-kerning
font-kerning
The CSS font-kerning property defines the way specific pairs of letters are spaced. You see, fonts often contain information about […]
.text { font-kerning: none; }
Continue Reading
font-variant
font-variant
The font-variant property allows you to change the targeted text to small caps. This property has been extended in CSS3. […]
{ p:first-letter: font-variant: small-caps; }
Continue Reading
font-style
font-style
The font-style property allows you to make text appear italicized (i.e. sloped, or slanted). em { font-style: italic; } This […]
Continue Reading
float
float
The float property in CSS is used for positioning and layout on web pages. A common usage might be floating […]
.element { float: right; }
Continue Reading
font
font
The font property in CSS is a shorthand property that combines all the following sub-properties in a single declaration. body […]
Continue Reading
flex-direction
flex-direction
The flex-direction property is a sub-property of the Flexible Box Layout module. It establishes the main-axis, thus defining the direction […]
.element { flex-direction: column-reverse; }
Continue Reading
flex-flow
flex-flow
The flex-flow property is a sub-property of the Flexible Box Layout module. It is a shorthand for flex-direction and flex-wrap. Syntax […]
.element { flex-flow: row wrap; }
Continue Reading
flex-wrap
flex-wrap
The flex-wrap property is a sub-property of the Flexible Box Layout Module. It defines whether the flex items are forced […]
.example { flex-wrap: wrap; }
Continue Reading
flex-grow
flex-grow
The flex-grow property is a sub-property of the Flexible Box Layout module. It defines the ability for a flex item […]
.flex-item { flex-grow: 2; }
Continue Reading
flex-shrink
flex-shrink
The flex-shrink property is a sub-property of the Flexible Box Layout module. It specifies the “flex shrink factor” which determines […]
.element { flex-shrink: 2; }
Continue Reading
flex-basis
flex-basis
The flex-basis property is a sub-property of the Flexible Box Layout module. It specifies the initial size of the flex […]
.element { flex-basis: 100px; }
Continue Reading
font-size
font-size
The font-size property specifies the size, or height, of the font. font-size affects not only the font to which it […]
Continue Reading
font-stretch
font-stretch
The font-stretch property, introduced in CSS3, selects a normal, condensed or expanded face from a font. In order to use […]
.element { font-stretch: ultra-condensed; }
Continue Reading
font-optical-sizing
font-optical-sizing
The font-optical-sizing CSS property allows the browser to adjust the outline of font glyphs to make them more legible at […]
.element { font-optical-sizing: none; }
Continue Reading