CSS body element width not working

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

HTML:


    

Some content

CSS:

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


        
6条回答
  •  一向
    一向 (楼主)
    2021-01-28 15:30

    You can't set a width on body, it's defined by the browser size. Edit your html to contain inner content, and it will work fine.

    This:

    
        

    Some content

提交回复
热议问题