100% width background image with an 'auto' height

后端 未结 8 1189
慢半拍i
慢半拍i 2020-12-04 08:20

I\'m currently working on a mobile landing page for a company. It\'s a really basic layout but below the header there\'s an image of a product which will always be 100% widt

8条回答
  •  無奈伤痛
    2020-12-04 09:01

    Add the css:

       html,body{
            height:100%;
            }
        .bg-img {
            background: url(image.jpg) no-repeat center top; 
            background-size: cover; 
            height:100%;     
        }
    

    And html is:

    CSS: stretching background image to 100% width and height of screen?

提交回复
热议问题