I\'m using twitter bootstrap to making responsive layout.It works like awesome.
It makes images too responsive. I need some images only need to be fixed width and height
Even simpler, you should be able to just add a generic class to the image so you can use it on multiple image sizes...
/* html */ /* css * / img.fixed-size { height: auto; width: auto; }
I haven't tried it in IE but it works on Safari, FF and Chrome.