Page 1 of 1

html CSS style second line spacing

Posted: Sun Nov 19, 2017 8:03 pm
by chris
Hi,

I would like that a second line (and following lines) has an indent.
So that the first line is more to the left than the other lines.

Code: Select all

<ul>
  <li>Text</li>
  <li>Text</li>
  <li>Reeeeaaaaaaal loooooooooooooooooooooong tttteeeeexxxxtt  and it has a second line.</li>
</ul>

Re: html CSS style second line spacing

Posted: Sun Nov 19, 2017 8:07 pm
by chris
Found a solution.

Code: Select all

li {
    list-style-type: disc;
    list-style-position: inside;
    text-indent: -4em;
    padding-left: 5em;
}