First, CSS text body content:
Second, the CSS text detailed:
1. Indent text
Grammar:
The default value for Text-indent:<length>|<percentage> is 0.
Attribute values are detailed:
<length>: Specifies the indentation of the text with a length value. Can be a negative value.
<percentage>: Specifies indentation for text in percent. Can be a negative value.
<inherit>: Inherits the parent Text-indent property value.
Usage:
Retrieves or sets the indentation of text in an object.
Inline object to use this property must first make the object appear as a block-level or inline block-level. The corresponding script attribute is textindent.
Compatibility:
code example
<! DOCTYPE html>
<meta charset= "Utf-8" >
<title> Rookie Tutorial (runoob.com) </title>
<style>
p {text-indent:50px;}
</style>
<body>
<p>
In my younger and more vulnerable years my father gave me some advice that I ' ve been turning on my mind ever since. ' Whenever you feel like criticizing anyone, ' he told me, ' Just remember, ' all the ' people ' and the ' haven ' t had the Advantages that ' ve had. '
</p>
</body>
Post-run Effects:
2.
CSS Text Format detailed