I need to set maximum height and width of a image in <img> tag. For example say max size is 400x400 px so if the image size is smaller than this then it will show the image as it is and if size is bigger then this then it should be compressed to this size. How can I do this in html or javascript?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
Set the
|
|||
|
|
|
The way I did it:
The image will be 400x400 only for those images that were exactly that size or bigger. |
|||
|
|
|
try using a div tag of that size and putting image inside:
or something like that. The div is the full size and the image can only expand to its borders. |
||||
|
|
Like so: http://jsfiddle.net/fMuVw/ |
|||
|
|