Background image doesn't repeat when browser window is smaller than content?

后端 未结 6 1507
小鲜肉
小鲜肉 2020-12-20 15:37

I have a header-container with a background image, like so:

#header-container
{
background:url(../img/bg.jpg) repeat-x 0 0px;
margin:0px auto;
width:100%;
te         


        
6条回答
  •  有刺的猬
    2020-12-20 16:09

    Add to "body" tag "width: 100%; display: table;"

    body
    {
        //..your_body_css_here...
        width: 100%;
        display: table;
    
    }
    

提交回复
热议问题