My element is not filling the entire space of the page

前端 未结 3 760
梦谈多话
梦谈多话 2021-01-26 14:00

So using the CSS code below I wanted to make my page fill entirely with an image located on my computer. Instead, it turned out like this:

#background {
    back         


        
3条回答
  •  粉色の甜心
    2021-01-26 14:49

    Try this. Does it work

    body {margin: 0;}
    

    EDITED: For updated problem

    #background {
        background: url(images/bg.jpg) no-repeat center center fixed;
        background-size: cover;
    }
    

提交回复
热议问题