CSS body element width not working

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

HTML:


    

Some content

CSS:

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


        
6条回答
  •  再見小時候
    2021-01-28 15:18

    Your CSS is applying those property on the whole page.

    Maybe you were looking for this:

    p { //body changed to p
        margin: 0 auto;
        width: 470px;
        background-color: cyan;
    }
    

    Here is the updated JSFiddle

提交回复
热议问题