browser compatibility tagged posts

Unordered list in IE6

I am working on a website wherein i need to display a list in a block. It’s working well with Firefox but in IE6, it really sucks! The list-type isn’t displaying. After asking Google I got the solution: Here http://www.sitepoint.com/forums/showthread.php?p=3997492

Thanks Paul O’B for the idea!

This is his solution:

li {float:left;padding:0 10px}
li a {
  display:list-item;
  list-style-type: disc;
  list-style-position: inside;
  padding-left:16px;
    color:#fff;
}

Here's mine:

.list li
{
	margin-left:0px;
	list-style:square;
	display: list-item;
	list-style-position: inside;
}
Read More