Css Text Properties
While CSS Font Properties covers most of the traditional ways to format your text, CSS Text Properties allows you to control the spacing, decoration, and alignment of your text.
The style sheet code:
1
2
3
.heading { text-align: center; text-transform: uppercase; color: #8493cb; }
.paragraph { text-indent: 12px; text-align: justify; line-height: 16px; }
a { text-decoration: none; color: #990000; [...]
↧