The text-indent property represents the indentation of the first line in a content-block.
Example of Code
<style>
.example-CSS-Text-Indent-paragraph{
text-indent: 50px;
}
</style>
<p class="example-CSS-Text-Indent-paragraph">This text is indented by 50 pixels. What this means is that the first line of the paragraph will be indented by 50 pixels, but the following lines will not be indented.</p>
Output
This text is indented by 50 pixels. What this means is that the first line of the paragraph will be indented by 50 pixels, but the following lines will not be indented.
