CSS: Text Styling

Learn how to style text in CSS to enhance the appearance of your web pages.

Text Styling Properties

CSS provides various properties to style text:

Example: Text Styling

/* Example */
h1 {
    font-family: Arial, sans-serif;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    text-decoration: underline;
    line-height: 1.5;
    letter-spacing: 2px;
    word-spacing: 5px;
}
        

This example styles an h1 element with various text properties.

Practice

Try experimenting with text styling:

Continue Learning

Quick Check

Which property controls the spacing between lines of text?