On my website I would like to display images uploaded by user in a new window with a specific size (width: 600px). The problem is that the images may be big - so, if they are bigger than these 600px, I would like to resize them, preserving the aspect ratio. I tried the "max-width" CSS propery, but it doesn't work - image's size doesn't change. Is there any way to solve this problem? Thanks in advance.
UPDATE:
<div id="ImageContainerr">
<img src="DisplayImage.do?ad_id=${requestScope.advert.id}" class="Image" />
</div>
CSS:
img.Image { max-width: 100%;}
div#ImageContainer { width: 600px; }
I also tried setting the max-width: 600px for an image, but doesn't work. The image is streamed from a servlet (it's stored outside Tomcat's webapps folder).
max-width, don't setmax-heightand it should work. If not, post your code so others can help you to spot the problem. – Ray Cheng Jun 18 '12 at 8:02