Text indention in CSS
Text indention [text-indent]
The property
text-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;
}
Comments
Post a Comment