Center parent div with dynamic and set width child divs

来源:互联网 发布:直播纹身软件 编辑:程序博客网 时间:2024/05/11 16:14

http://stackoverflow.com/questions/26317115/center-parent-div-with-dynamic-and-set-width-child-divs

Centering a Div of Unknown Width

When the div widths are variable, the centering technique below works well. It uses an outer and inner wrapper.

  1. The outer wrapper div is set to text-align:center.

  2. the inner wrapper is inline-block, and responds to the text-align:center from the outer wrapper. It uses text-align:left to overwrite the text center from the first wrapper.

  3. The logo and menu are floated so they will be next to each other.

This is a good technique for centering when the widths can be variable.


0 0
原创粉丝点击