Ethan Marcotte stellt ein Script vor mit dem sich Fluid Images realisieren lassen. Die Lösung scheint zunächst recht simple:
img {
// IE
width: 100%
// richtige browser
max-width: 100%;
}
With that, the larger issue was basically sorted: namely, that a non-fixed page’s layout won’t break if images or stupid Youtube movies were dropped into the markup. Hooray, right? As it turns out, not quite. Not quite hooray at all.
(…)
The challenging bit is that this isn’t a browser-specific problem, but a platform-specific one: native image scaling on Windows just, well, kind of sucks. Specifically, if you’re on any version of Internet Explorer (prior to version IE8) or on a version of Firefox older than 3.0 on Windows, things look decidedly janky: the text gets painfully artifacted as the image resizes, beyond the point of maintaining any semblance of legibility. Thankfully, it’s fixable.
Die Lösung ist ein kleines JavaScript was sich Microsoft’s AlphaImageLoader zu nutze macht.