How to make 100% horizontal cross-browser HTML / CSS menu ?
<i> 1. retaining pure HTML, lilist
<i> 2. no image / javascript, no tables, W3C standards compliant
Example for an invalid example:
#nav{
text-align:justify;
}
#nav li{
display:inline-block; white-space:nowrap;
}
#nav li#span{
display:inline-block; width:100%; height:1px;
}
*html #nav li,*html #nav li#span,*+html #nav li,*+html #nav li#span{
display:inline;
}
and
<div id="nav">
<ul>
<li>Home </li>
<li>Services </li>
<li>Portfolio </li>
<li>Clients </li>
<li>Articles </li>
<li>Contact Us </li>
<li id="span"></li>
</ul>
</div>
source
share