I have a horizontal CSS menu. The problem is when the user creates more than 5 menu items the li tabs move onto a new line. I dont want this to happen.
How can I make it fluid width so if the user creates just 3 menu items then each tab increases in width so it fits full width?
HTML:
<div class="container">
<div id="new-menu-lower">
<ul class="menuul">
<li class="menuli">
<a href="/test.aspx">Test</a>
</li>
<li class="menuli">
<a href="/test.aspx">Test</a>
</li>
<li class="menuli">
<a href="/test.aspx">Test</a>
</li>
<li class="menuli">
<a href="/test.aspx">Test</a>
</li>
<li class="menuli">
<a href="/test.aspx">Test</a>
</li>
<li class="menuli">
<a href="/test.aspx">Test</a>
</li>
<li class="menuli">
<a href="/test.aspx">Test</a>
</li>
</ul>
</div>
</div>
CSS:
div.container
{
clear: both;
margin: 10px auto 0;
width:960px;
border:1px solid red;
height:700px;
}
div#new-menu-lower {
border-radius: 3px 3px 3px 3px;
border-top: 0 solid lightgrey;
margin: 0 8px 10px;
}
#new-menu-lower ul {
border: 1px solid white;
display: block;
height: 27px;
}
#new-menu-lower ul li:first-child {
border-left: 0 solid lightgrey !important;
border-radius: 7px 0 0 7px;
}
#new-menu-lower ul li {
background-image: url("http://i45.tinypic.com/16if95z.png");
background-repeat: repeat;
border-right: 0 solid lightgrey !important;
float: left;
height: 27px;
padding-left: 10px;
padding-right: 10px;
text-align: center;
width: 168px;
}
JSFIDDLE EXAMPLE: http://jsfiddle.net/rM9MW/
Live demo http://jsfiddle.net/rM9MW/29/
Hey now you can used
display:table-cell
properties in your css as like thisand update your css and change to color according to your layout
Live demo http://jsfiddle.net/rM9MW/29/
Updated demo http://jsfiddle.net/rM9MW/39/
You don't jeed javascript!
demo jsBin
Just change this lines in your CSS:
and:
Using the following Jquery you can achieve your goal;
JQUERY
See this demo: http://jsfiddle.net/rathoreahsan/nxurR/
I created an example that (I think) works:
http://jsfiddle.net/ybmGr/2/
It depends how much text is inside of the list element. It won't work for X elements. You just can't go unlimited X with this.
EDIT: Well It seems that
undefined
posted the solution that works for as many elements you want...like this?
http://jsfiddle.net/rM9MW/8/
I came from the future, for future viewers :)
You can use a display: flex; for the ul, and a flex: 1; for menu items, I think it's a very good solution for recent browsers.