Centering a percent-based div

前端 未结 6 1890
夕颜
夕颜 2020-12-13 18:23

Recently, a client asked that his site be percent-based rather than pixel-based. The percent was to be set to 80%. As you guys know, it is very easy to center the container

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-13 18:53

    #container { width: 80%; margin: 0 auto; position relative; }
    

    And the element parent of "container" must be position relative or absolute

    for example:

    body{position:relative;}
    #container { width: 80%; margin: 0 auto; position relative; }
    

提交回复
热议问题