DEV Community

Suma
Suma

Posted on

CSS FONT STYLES

CSS STYLES

1. TEXT AND FONT STYLES

color : sets text color
p {color: blue;}

font size : changes text size
h1 {font-size: 30px;}

font-family : sets font style
body {font family: Arial , sans-serif;}

font-weight : makes text bold
em {font-style: italic;}

font style : makes text italic
em {font-style: italic;}

text align : aligns text left, center or right
p {text-align: center;}

text decoration : underline or remove underline
a {text- decoration: none;}

text transform : changes text case
p{text-transform: uppercase;}

letter spacing : space between letters
p {letter-spacing : 2px;}

line height : space between lines
p {line-height : 1.6;}

Top comments (0)