Remove height auto using css

后端 未结 5 1018
天命终不由人
天命终不由人 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 11:05

    You can override height with:

    height: unset;
    

    Browser support is all except IE

提交回复
热议问题