To get a header line in a html list the easiset way is to use the style list-style-type:none
<ul> <li style="list-style-type:none">Heading</li> <li>List items</li> </ul> |
To get a header line in a html list the easiset way is to use the style list-style-type:none
<ul> <li style="list-style-type:none">Heading</li> <li>List items</li> </ul> |
Internet Explorer won’t render empty divs correctly.
I had a div with a height and a background image but no content; It was not rendered with the correct height it was only like one line.
A work around for this is to have some “content” inside the div (like a whitespace, a comment or why not both) then Internet Explorer renders the correct height.
<div class="some-class-with-size-and-background"> <!-- keep to get IE to render this div --> </div> |