CSS body element width not working

前端 未结 6 797
挽巷
挽巷 2021-01-28 14:32

HTML:


    

Some content

CSS:

body {
    margin: 0 auto;
    width: 470px;
    back         


        
6条回答
  •  离开以前
    2021-01-28 15:11

    Into browser, the represent the main container and width is referred to browser. If you want center all content into body can simply try something so:

    body {
      margin: 0px auto;
      text-align: center;
      background-color: cyan;
    }
    
    
      

    Content

    I prefer include the content into

    .

提交回复
热议问题