Full Screen Background Image Is Stretched

后端 未结 6 1255
我在风中等你
我在风中等你 2021-01-07 02:58

I had made a full screen background image for one of my clients, but the problem is that when I make the image to fit all the screen using the following css codes:

6条回答
  •  庸人自扰
    2021-01-07 03:33

    This should keep the image the correct ratio:

    #bg-image{
    height: auto;
    width: auto;
    float: left;
    overflow: hidden;
    position: relative;
    }
    

提交回复
热议问题