Set a div width, align div center and text align left

后端 未结 4 609
南方客
南方客 2021-02-05 04:16

I have a small problem but I can\'t get it solved. I have a content header of 864px width, a background image repeated-y and footer image. Now I have this

4条回答
  •  遇见更好的自我
    2021-02-05 04:29

    Use auto margins.

    div {
       margin-left: auto;
       margin-right: auto;
       width: NNNpx;
    
       /* NOTE: Only works for non-floated block elements */
       display: block;
       float: none;
    }
    

    Further reading at SimpleBits CSS Centering 101

提交回复
热议问题