Tabbed Navigation Using a List
What is the best way to adjust the li elements to fill the entire width of the div the tab bar w开发者_如何转开发ill be located in?
i'd prefer not to have to use width:33%
, but this works.
<html>
<head>
<style type="text/css">
div.menuTop {width:400px;border:1px solid red;}
div.menuTop li {float:left; width:33%; border:1px solid green;}
</style>
</head>
<body>
<div class="menuTop">
<li>one</li>
<li>two</li>
<li>three</li>
<div style="clear:both;"></div>
</div>
</body>
hope that helps.
精彩评论