It seems you're looking for a tabular layout, so maybe the best bet would be to use a <table>
instead of floating <li>
elements.
That said, you can also specify tabular styles on your elements:
ul {
display: table-row;
}
li {
width: 100px;
border: 1px solid black;
display: table-cell;
}
This should work on most modern browsers. You will find an updated fiddle here.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…