Scale div to background-image height

前端 未结 2 1019
野的像风
野的像风 2021-01-28 07:58

I\'ve got a page using a background-image. background-size is set to cover.

The content is just a heading and two buttons. I want the div to b

2条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-28 08:23

    know this is old thread but stumbled upon it.

    the following works for me if i know the dimensions of the image,

    eg. 1220x404 => 1220/404 = 3.01980198 = 30.1980198

    header { max-height: 404px; height: 30.1980198vw; }
    

提交回复
热议问题