<html>
<head>
<style>
ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li
{
float:left;
}
a
{
display:block;
width:60px;
background-color:#dddddd;
}
</style>
</head>
<body>
<ul>
<li><a href="/demo/trycss_navbar_horizontal_float.htm#home">Home</a></li>
<li><a href="/demo/trycss_navbar_horizontal_float.htm#news">News</a></li>
<li><a href="/demo/trycss_navbar_horizontal_float.htm#contact">Contact</a></li>
<li><a href="/demo/trycss_navbar_horizontal_float.htm#about">About</a></li>
</ul>
<p><b>Note:</b> If a !DOCTYPE is not specified, floating items can produce unexpected results.</p>
<p>A background color is added to the links to show the link area. The whole link area is clickable, not just the text.</p>
<p><b>Note:</b> overflow:hidden is added to the ul element to prevent li elements from going outside of the list.</p>
</body>
</html>