DONT ADD ANYTHING HERE!

text-indent
  1. The text-indent CSS property sets the length of empty space (indentation) that is put before lines of text in a block

Values

  1. length
    1. Indentation is specified as an absolute length
    2. Negative values are allowed
  2. percentage
    Indentation is a percentage of the containing block's width
  3. each-line
    Indentation affects the first line of the block container as well as each line after a forced line break, but does not affect lines after a soft wrap break
  4. hanging
    1. Inverts which lines are indented
    2. All lines except the first line will be indented

Example

normal
Friends, Romans, countrymen, lend me your ears
I come to bury Caesar, not to praise him
The evil that men do lives after them
The good is oft interred with their bones
html
<div class="normal">
    Friends, Romans, countrymen, lend me your ears <br>
    I come to bury Caesar, not to praise him <br>
    The evil that men do lives after them <br>
    The good is oft interred with their bones
</div>
                                    
css
    div.normal {
        border: 2px solid gray;
        padding: 1em;
    } 
indent
Friends, Romans, countrymen, lend me your ears
I come to bury Caesar, not to praise him
The evil that men do lives after them
The good is oft interred with their bones
html
<div class="normal">
    Friends, Romans, countrymen, lend me your ears <br>
    I come to bury Caesar, not to praise him <br>
    The evil that men do lives after them <br>
    The good is oft interred with their bones
</div> 
css
div.indent {
    border: 2px solid gray;
    padding: 2em;
    text-indent: 2em;
} 
each-line
Friends, Romans, countrymen, lend me your ears
I come to bury Caesar, not to praise him
The evil that men do lives after them
The good is oft interred with their bones
css
div.eachline {
    border: 2px solid gray;
    padding: 2em;
    text-indent: 2em each-line;
}
hanging
Friends, Romans, countrymen, lend me your ears
I come to bury Caesar, not to praise him
The evil that men do lives after them
The good is oft interred with their bones
css
div.hanging {
    border: 2px solid gray;
    padding: 1em;
    text-indent: 2em hanging;
} 

References