i have created some tabs using css but they look horrible in ie 7. Why?
Here is the html
<ul>
<li><a href='view.php'>View</a><li>
<li><a href='logout.php'>Logout</a><li>
<li><a href='www.google.com'>Search</a><li>
</ul>
and here is the css
ul{list-style:none;height:20px;}
li{background-color:#ff0;float:left;margin:5px;width:60px;text-align:center;display:block;}
li:hover{background-color:#009;}
a{text-decoration:none;}
Here is how it looks in ff

Here is how it looks in ie

You’re not terminating your list items correctly. Try replacing each
<li>at the end of the lines with</li>and you should be good.