Text Formatting Demo
1. text-align: left
Classic Tiramisu
This heading is aligned to the left.
.align-left {
text-align: left;
}
2. text-align: center
Classic Tiramisu
This heading is aligned to the center.
.align-center {
text-align: center;
}
3. text-align: right
Classic Tiramisu
This heading is aligned to the right.
.align-right {
text-align: right;
}
4. font-style
This text uses the normal font style.
This text uses italic.
.normal-copy {
font-style: normal;
}
.italic-copy {
font-style: italic;
}
5. font-size
This text is smaller.
This text is larger.
.small-copy {
font-size: 14px;
}
.large-copy {
font-size: 28px;
}
6. font-weight
This text is lighter.
This text is bolder.
.light-copy {
font-weight: 400;
}
.bold-copy {
font-weight: 700;
}
7. line-height
This paragraph uses a tighter line height. Tiramisu is a layered Italian dessert made with mascarpone, coffee, and ladyfingers.
This paragraph uses a looser line height. Tiramisu is a layered Italian dessert made with mascarpone, coffee, and ladyfingers.
.tight-copy {
line-height: 1.2;
}
.loose-copy {
line-height: 1.9;
}
8. font-family
This text uses a sans-serif font.
This text uses a serif font.
.sans-copy {
font-family: Arial, sans-serif;
}
.serif-copy {
font-family: Georgia, "Times New Roman", serif;
}
9. color
This text uses a warm brown color.
This text uses a muted secondary color.
.warm-copy {
color: #7c3f00;
}
.muted-copy {
color: #8a7363;
}
10. text-decoration on links
.link-none {
text-decoration: none;
}
.link-underline {
text-decoration: underline;
}
.link-line-through {
text-decoration: line-through;
}
11. text-decoration with hover
.link-hover-demo {
text-decoration: none;
border-bottom: 2px solid transparent;
}
.link-hover-demo:hover {
border-bottom-color: #a64b00;
}