Appearance:
text-indent: <value>
Possible Values:
<length> | <percentage>
Initial Value:
0
Applies to:
Block-level elements
Inherited:
Yes
<style>
li.small { text-indent: 5em }
li.medium { text-indent: 10em }
li.large { text-indent: 15em }
</style>
<ul>
<li>This text is displayed normally</li>
<li class="small">This text is displayed with a small indent</li>
<li class="medium">This text is displayed with a medium indent</li>
<li class="large">This text is displayed with a large indent</li>
<ul>