Fixed background cover becomes zoomed in mobile view

前端 未结 3 1346
难免孤独
难免孤独 2021-02-14 10:06

I\'m using a fixed background cover for my website here: http://www.datisdesign.com

Every page has a big header image, but in small devices such as mobiles, the cover im

3条回答
  •  你的背包
    2021-02-14 10:36

    Try this one out

    background: url(image.format) no-repeat center center fixed; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    

提交回复
热议问题