Faking a second line indent on "li"
Since you really can't indent the second line of a "li", you have to fake it by using a negative indent on the first line. Here's some CSS to get started, courtesy of Pat Rees.ul {
margin:0px;
padding: 0px;
}
li {
margin: 0px;
padding: 0px;
text-indent: -1.5em;
margin-left: 1.5em;
}


3 Comments:
Worked great for me. Thank you so much.
--
Davo
Excellent! This solved a problem for me.
Thank you thank you
Post a Comment
<< Home