I have a parent and couple of items in that.
&
Try this: http://jsfiddle.net/QzYAr/
display: table-cell: Is there a disadvantage of using `display:table-cell`on divs?li elements.CSS:
ol {
width: 400px;
/*width: 800px;*/
display: table;
table-layout: fixed; /* the magic dust that ensures equal width */
background: #ccc
}
ol > li {
display: table-cell;
border: 1px dashed red;
text-align: center
}
HTML:
- Item 1
- Item 2
- Item 3
- Item 4