Making gradient background fill page with css

后端 未结 7 1186
醉酒成梦
醉酒成梦 2020-12-14 01:22

I have this gradient background but I don\'t want it to repeat the way it does to fill the page, I want it to be one large gradient that fills the page.

html:

<
7条回答
  •  爱一瞬间的悲伤
    2020-12-14 01:34

    Got the same problem but only this one is working, please add this style

    background-attachment: fixed;
    

    The background-attachment property sets whether a background image scrolls with the rest of the page, or is fixed. There are three values: scroll, fixed, and local.

提交回复
热议问题