How CSS implements the paragraph first character indent two-character effect:
The first line of the paragraph indentation is an attempt to organize the language, of course, the use of spaces can also achieve this effect, but this is slightly coarse silly, the following describes the use of the Text-indent property to achieve this effect, about the Text-indent property can I see A section of the Text-indent property of CSS .
The code example is as follows:
<!DOCTYPE HTML><HTML><Head><MetaCharSet= "Utf-8"><Metaname= "Author"content= "http://www.softwhy.com/" /><title>Ant Tribe</title><styletype= "Text/css">#box{text-indent:2em;width:200px;Height:100px;Background-color:Green;} </style> </Head> <Body> <DivID= "box">Ant Tribe welcomes you, only struggle will have a better tomorrow. </Div> </Body> </HTML>
The above code to achieve our requirements, to be able to empty two characters at the beginning of the line, it is particularly important to note that the Text-indent property value of the unit is EM, here is not more introduced, specifically, you can refer to the CSS in the difference between PX and EM chapter.
The original address is: http://www.softwhy.com/forum.php?mod=viewthread&tid=9630
For more information, refer to: http://www.softwhy.com/divcss/
How CSS implements the paragraph first character indent two character effect