CSS force image resize and keep aspect ratio

前端 未结 23 886
野趣味
野趣味 2020-11-22 10:04

I am working with images, and I ran across a problem with aspect ratios.

\"\"

23条回答
  •  心在旅途
    2020-11-22 10:42

    Set the CSS class of your image container tag to image-class:

    and add this you your CSS stylesheet.

    .image-full {
        background: url(...some image...) no-repeat;
        background-size: cover;
        background-position: center center;
    }
    

提交回复
热议问题