Text-indent is a property of CSS that defines the indentation of the first line of text . The values are as follows:
1. Length: The first line is indented in fixed lengths. The default value is 0.
Sets the length of the first line indent of 2EM.
div{ width:300px; Text-align:justify; text - indent:2em; }
Results:
2, Percent: Defines the indentation of the first line of text based on the percentage of the parent element's width . As shown below:
<div style= "width:160px" >
<div style= "width:300px;text-align:justify; text-indent:10%;" > Swallows go, there is time to come again, Willow withered, there is no time for green, peach blossom Thanks, there is a time to open again. But, wise, do you tell me why our days are gone? ---someone stole them: who was that? And where is it hidden? It was their own escape: now where?
</div>
</div>
Results:
The text-indent of CSS learning every day