Text Alignment Decoration and Spacing
Align text, add underlines or strikethroughs, and control letter and line spacing.
text-align
text-align controls horizontal alignment of inline content within a block container.
.left { text-align: left; }
.center { text-align: center; }
.right { text-align: right; }
.justify { text-align: justify; }text-align: justify
justify stretches lines to fill the full container width by adding space between words. Use with hyphens: auto to avoid awkward gaps on narrow containers.
p {
text-align: justify;
hyphens: auto;
}All lessons in this course
- Font Family and Web-Safe Fonts
- Font Size Weight and Style
- Text Alignment Decoration and Spacing
- Google Fonts and @font-face