font-smooth Examples
Examples of the CSS Property font-effect
Return to font-smooth Property
font-smooth: always
The font in this paragraph should be always smoothed, no matter how small or large the font is written.
p { font-smooth: always; }
Return to font-smooth Property
font-smooth: never
The font in this paragraph should be never smoothed, no matter how small or large the font is written.
p { font-smooth: never; }
Return to font-smooth Property
font-smooth: absolute size
The fonts that are sized large or larger in this paragraph should be smoothed. Small or large the text should look different.
p { font-smooth: large; }
Return to font-smooth Property
font-smooth: length
Any font larger than 1em in this paragraph should be smoothed, no matter how small or large the font is written.
p { font-smooth: 1em; }Jennifer Kyrnin

