How to center a wrapper-div and not the content

前端 未结 3 1779
半阙折子戏
半阙折子戏 2021-02-06 11:33

I want my page to always be centered in the browser without affecting the content( like align-text: center; does). I want to center my wrapper-div.. How do I do this?

Si

3条回答
  •  离开以前
    2021-02-06 11:55

    you can set the margin property for the wrapper div like following in CSS

    #wrapper { margin:20px auto } 
    

提交回复
热议问题