I have tried to auto resize the image using the CSS property max-width, but it does't work in IE7 and IE8. Is there any way to auto resize the image with pure CSS in IE7 and IE8?
|
You need a one-time cached expression for IE 6-7.
Example: http://kizu.ru/lib/ie/minmax.html JS source file: http://kizu.ru/lib/ie/ie.js Author: Roman Komarov |
|||
|
|
|
Doesn't IE 7&8 recognise the following:
|
|||
|
|
|
Use
I'm not sure if that works in IE7—please test it and let us know if you're testing IE7. Before I figured out the
|
|||||
|
|
Try something like this:
Source (worth taking a look at) |
|||
|
|
|
Most web-developers know that IE has fallen behind in the race for standards and being able to show the latest and greatest. Many CSS2 properties are unsupported. Some of the more useful ones, are properties such as max-width, max-height, min-width and finally min-height. Try this:
|
|||
|
|
Use
|
|||
|
|
|
As you also want support for media queries..You can use the following polyfill to add support for media queries to IE6-IE8 https://github.com/scottjehl/Respond (very small in size, just 1-2kb minified and gzipped) then use the following css:
|
||||
|
|

expressionare justjavaScriptinside a stylesheet, it won't work if the user turnsjavaScriptdown. Thus you'd better use javaScript instead to keep your stylesheet clean – steven.yang Nov 18 '11 at 5:58max-widthproperty is indeed supported by IE7 (and IE8). Difficult to say why it's not working for you without seeing your code. To get high quality scaling in IE7 & IE8, you need to addAlphaImageLoaderwithsizingMethod="scale", but that's not needed to get images to scale, just to improve appearance. – steveax Nov 18 '11 at 18:16