Search code examples
javascripthtmlcssimagesize

Image size issue, width and height not working


This is the style: style="width:30px;height:30px; which I tried and other CSS to an image, but stays original size?


Solution

  • Maybe the image size is being overridden somewhere else. To counter this,

    style="width: 30px !important;height: 30px !important;"

    The !important specifies that the property given should override any other class property or image property