Center contents of webpage

前端 未结 7 1937
星月不相逢
星月不相逢 2020-12-06 20:32

I want to \"centerize\" the text and contents of my webpage. Now I don\'t want to align the text to center, I still want a left alignment but I want significant margins on t

7条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-06 20:44

    Have a container div within which you put all your content:

    
    
        a sample
    
    
        

    this is it

    all content goes here

    Then add some css specifying the width and margins of your container div:

    #container {
        width: 750px;
        margin: 0 auto;
    }
    

提交回复
热议问题