Responsive css background images

前端 未结 19 796
北荒
北荒 2020-11-22 05:39

I have a website (g-floors.eu) and I want to make the background (in css I have defined a bg-image for the content) also responsive. Unfortunately I really don\'t have any i

19条回答
  •  醉酒成梦
    2020-11-22 06:24

    This is an easy one =)

    body {
        background-image: url(http://domains.com/photo.jpeg);
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-size: cover;
    }
    

    Take a look at the jsFiddle demo

提交回复
热议问题