html - Can i put text after <li></li> tag? -
i'm wondering, can put text after li tag , correct? example
<ul> <li>text</li> text here after tag <li>text</li> text here after tag </ul>
writing such code return dots li
tags indented , that's want achieve.
regarding screenshot - following code want
<ul> <li>text</li> <span>text here after tag</span> <li>text</li> <span>text here after tag</span> </ul>
css
span { margin-left: -15px; }
and here fiddle: http://jsfiddle.net/p2cxf/
note w3c markup validator throw errors. <span>
tag not allowed child of <ul>
edit:
this 1 validate (thank @ma3x)
<ul> <li>text<br /> <span>text here after tag</span></li> <li>text<br /> <span>text here after tag</span></li> </ul>
you can use <p>
instead of <span>
.
Comments
Post a Comment