For some reason my divs won\'t center horizontally in a containing div:
If elements are to be displayed in one line and IE 6/7 do not matter, consider using display: table
and display: table-cell
instead of float
.
inline-block
leads to horizontal gaps between elements and requires zeroing that gaps. The most simple way is to set font-size: 0
for parent element and then restore font-size
for child elements that have display: inline-block
by setting their font-size
to a px
or rem
value.