html Method to achieve indentation effect: First create an HTML sample file; then enter some text content in the body; finally specify the indentation of the first line of text in the text block through the "text-indent" attribute .
The operating environment of this article: windows7 system, HTML5&&CSS3 version, DELL G3 computer
How to indent html?
First of all, we need to understand the attribute text-indent. This label is used to indent the first line. Its unit is the length unit or percentage.
The text-indent attribute specifies the first line in the text block. The indentation of the text.
Note: Negative values are allowed. If a negative value is used, the first line will be indented to the left.
Note: Before CSS 2.1, text-indent always inherited a calculated value, rather than a declared value.
Example:
<html> <head> <style type="text/css"> p {text-indent: 1cm} </style> </head> <body> <p> 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 这是段落中的一些文本。 </p> </body> </html>
Effect:
HTML video tutorial》
The above is the detailed content of How to indent html. For more information, please follow other related articles on the PHP Chinese website!