Keep background image fixed during scroll using css

后端 未结 3 862
一生所求
一生所求 2020-12-01 02:37

How do I keep the background image fixed during a page scroll? I have this CSS code, and the image is a background of the body and not

<
3条回答
  •  时光取名叫无心
    2020-12-01 03:21

    Just add background-attachment to your code

    body {
        background-position: center;
        background-image: url(../images/images5.jpg);
        background-attachment: fixed;
    }
    

提交回复
热议问题