Lesson 5: Text
Ak Patel
---
Formatting and adding style to text is a key issue for any web
designer. In this lesson you will be introduced to the amazing
opportunities CSS gives you to add layout to text. The following
properties will be described:
In the example below the text in table headings
An example could be the word "headline" which can be presented to the user as "HEADLINE" or "Headline". There are four possible values for text-transform:
Try to take a look at the HTML code for this example and you will see that the text actually is in lowercase.
- text-indent
- text-align
- text-decoration
- letter-spacing
- text-transform
Text indention [text-indent]
The propertytext-indent allows you to add an elegant
touch to text paragraphs by applying an indent to the first line of the
paragraph. In the example below a 30px is applied to all text paragraphs marked with <p>:
p {
text-indent: 30px;
}
Text alignment [text-align]
The CSS propertytext-align corresponds to the attribute align used in old versions of HTML. Text can either be aligned to the left, to the right or centred. In addition to this, the value justify
will stretch each line so that both the right and left margins are
straight. You know this layout from for example newspapers and
magazines. In the example below the text in table headings
<th> is aligned to the right while the table data <td> are centred. In addition, normal text paragraphs are justified:
th {
text-align: right;
}
td {
text-align: center;
}
p {
text-align: justify;
}
Text decoration [text-decoration]
The propertytext-decoration makes it is possible to
add different "decorations" or "effects" to text. For example, you can
underline the text, have a line through or above the text, etc. In the
following example, <h1> are underlined headlines, <h2> are headlines with a line above the text and <h3> are headlines with a line though the text.
h1 {
text-decoration: underline;
}
h2 {
text-decoration: overline;
}
h3 {
text-decoration: line-through;
}
Letter space [letter-spacing]
The spacing between text characters can be specified using the propertyletter-spacing. The value of the property is simply the desired width. For example, if you want a spacing of 3px between the letters in a text paragraph <p> and 6px between letters in headlines <h1> the code below could be used.
h1 {
letter-spacing: 6px;
}
p {
letter-spacing: 3px;
}
Text transformation [text-transform]
Thetext-transform property controls the capitalization of a text. You can choose to capitalize, use uppercase or lowercase regardless of how the original text is looks in the HTML code.An example could be the word "headline" which can be presented to the user as "HEADLINE" or "Headline". There are four possible values for text-transform:
- capitalize
- Capitalizes the first letter of each word. For example: "jkl" will be "JKL".
- uppercase
- Converts all letters to uppercase. For example: "jkl" will be "JKL".
- lowercase
- Converts all letters to lowercase. For example: "Jkl" will be "JKL".
- none
- No transformations - the text is presented as it appears in the HTML code.
<li> (list-item). Let's say that we want names to be capitalized and headlines to be presented in uppercase letters.Try to take a look at the HTML code for this example and you will see that the text actually is in lowercase.
h1 {
text-transform: uppercase;
}
li {
text-transform: capitalize;
}