display: table ( table-cell , , Firefox, table-row) table-layout: fixed, , () , , , .
50 "", .
table-row ul table nav, Fx 18 display: table ul (-, , aka , ).
( , ) .
: http://jsfiddle.net/X6UX9/1/
HTML:
<nav>
<ul>
<li> //width = 50px</li>
<li>//width = 50px</li>
<li class="last">//width (...) 300px</li>
</ul>
</nav>
CSS
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
nav {
display: table;
table-layout: fixed;
width:400px;
height:50px;
}
nav > ul {
display: table-row;
}
nav li {
display: table-cell;
padding:5px;
outline: 1px dashed blue;
}
nav li:not(:last-child) {
width: 50px;
}
PS: :last-child IE9 +, IE8 +, ...
edit: oops .last li. , :)
edit2: , :not(), :last-child pseudo