Stretch an image to fill width of browser window

前端 未结 5 1956
谎友^
谎友^ 2021-02-08 12:11

I have an image, and I want the width to fill up the browser window, no matter the size of the window.

How do I do this in HTML and CSS?

5条回答
  •  余生分开走
    2021-02-08 12:16

    ​​​​​​​​​​

    CSS file

    .fixpixel img{
    height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
     }
    

提交回复
热议问题