Published | 18/11/2016 |
---|---|
Last Updated | 17/11/2024 |
/* font-size and font-family are required. rest is optional. */
body {
font: font-style font-variant font-weight font-size/line-height font-family;
}
Individual properties:
body {
font-style: normal|italic|oblique|initial|inherit;
}
Example:
body {
font: italic small-caps normal 16px/150% Arial, Helvetica, sans-serif;
}
Text:
* {
text-transform: capitalise|lowercase|uppercase;
text-decoration: none|underline|overline|line-through;
text-indent: 25px; /* indent first line */
text-align: left|right|center|justify;
text-rendering: auto|optimizeSpeed|optimizeLegibility|geometricPrecision;
line-height: 1.5;
letter-spacing: 1px;
word-spacing: 5px;
}
Text shadow:
p {
text-shadow: h-shadow v-shadow blur-radius color|none|initial|inherit;
}
/* examples */
p { text-shadow: 1px 1px 1px #000; }
p { text-shadow: 1px 1px 1px #000, 3px 3px 5px blue; }
References:
Special cases
First child
li:first-child {}
/* or */
li:nth-child(1) {}
Last child
li:last-child {}