Responsive css background images

前端 未结 19 1071
北荒
北荒 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:06

    If you want the entire image to show irrespective of the aspect ratio, then try this:

    background-image:url('../images/bg.png');
    background-repeat:no-repeat;
    background-size:100% 100%;
    background-position:center;
    

    This will show the entire image no matter what the screen size.

提交回复
热议问题