Remove height auto using css

后端 未结 5 988
天命终不由人
天命终不由人 2021-01-17 10:18

I have images which have width and height in html but there is also a stylesheet affecting these images with height auto

How to reset/override this property using cs

5条回答
  •  爱一瞬间的悲伤
    2021-01-17 10:56

    Best Practice is not to globally define all img tags with overriding height. I would if you can, change that declaration to:

    img.auto-height {
      height: auto;
    }
    

    And anywhere you need to have an auto height on an image then add class="auto-height"

提交回复
热议问题