CSS Text Properties
Text Formatting |
|||
Property |
Description |
Values |
Sample Code |
color |
Sets text colour |
name |
h2 {color: red} |
letter-spacing |
Sets spacing between characters |
normal |
p {letter-spacing: 0} |
line-height |
Sets spacing between lines |
normal |
h1 {line-height:36px} |
text-align |
Sets justification |
left |
p{text-align: left} |
text-decoration |
Sets text Style |
none |
a{text-decoration: none} |
text-indent |
Sets indent text from the left margin |
length |
p {text-indent: 5px} |
| text-transform |
Transforms text letters |
capitalize |
h1 {text-transform: uppercase} |
Sample
Code:
Result:

