CSS provides many properties to style and format text on your webpage. Here are the main text styling options:
Change the color of text using color:
color: red;Align text with text-align:
text-align: center;Transform text case with text-transform:
text-transform: uppercase;Add lines or effects with text-decoration:
text-decoration: underline;Adjust spacing between letters and words:
letter-spacing: 3px; word-spacing: 10px;Indent the first line of text with text-indent:
text-indent: 30px;Control how text wraps with white-space:
white-space: nowrap;