full screen background html

后端 未结 5 698
情书的邮戳
情书的邮戳 2021-01-26 02:51

I\'m trying to show a picture as the background of my website so I\'m using the following code

HTML:

5条回答
  •  生来不讨喜
    2021-01-26 03:29

    You can use max-width

    #bg {
        width: 100%;
        height: 75%;
        position: absolute;
        z-index: -5000;
    
        max-width: 2000px; /* use this to limit the maximum width */
    }
    

提交回复
热议问题