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
While it's not exactly removing, there's a couple other ways you could try and work around it.
div img { height: 150px; }
pseudo-selector
img:nth-child(1n){ height: 150px; }
img:nth-child(1n){ height: 150px; } img { height: auto; }