Last Updated: August 03, 2017
·
139
· DanDsign

Image width 100% using input

If for some reason you are using the tag "input" to upload an image at 100% width.
You've realized when you hover, there is a pointing hand, because "input" uses the image as a button.
to get rid of that pointing hand you may add the attribute "cursor:default" like this:

<input type="image" name="imageField" id="imageField" src="your/path/to/the/image.jpg" width="100%" style="cursor:default;"/>