Remove height auto using css

后端 未结 5 1023
天命终不由人
天命终不由人 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条回答
  •  萌比男神i
    2021-01-17 11:11

    While it's not exactly removing, there's a couple other ways you could try and work around it.

    • Adjust the height via the parent

    div img { height: 150px; }

    • Or with a pseudo-selector

    img:nth-child(1n){ height: 150px; }

    img:nth-child(1n){
      height: 150px;
    }
    img {
      height: auto;
    }  

提交回复
热议问题