How can I horizontally align my divs?

前端 未结 9 864
野的像风
野的像风 2020-11-28 03:47

For some reason my divs won\'t center horizontally in a containing div:

9条回答
  •  失恋的感觉
    2020-11-28 04:30

    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.

提交回复
热议问题