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
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"
class="auto-height"