Responsive css background images

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

    Try using background-size but using TWO ARGUMENTS One for the width and the other one for the height

    background-image:url('../images/bg.png'); 
    background-repeat:no-repeat;
    background-size: 100% 100%; // Here the first argument will be the width 
    // and the second will be the height.
    background-position:center;
    

提交回复
热议问题