CSS Stretched Background Image

后端 未结 4 838
滥情空心
滥情空心 2021-01-12 09:28

I have a large image to be use as a background-image of a page. What I want is that the height of the image will be stretched to fill the height of the page. It

4条回答
  •  迷失自我
    2021-01-12 10:25

    add this to the css

    {
    background: black url("/image/background.jpg") no-repeat fixed center;
    height: 100%;
    width:100%
    }
    

提交回复
热议问题