Posts Tagged ‘css’

Internet Explorer image resizing tip

Tuesday, March 17th, 2009

Who knew?

Though it's not best prac­tice to resize images in the browser this could really be use­ful in the right situation:

 
img { -ms-interpolation-mode: bicubic; }
 

This lit­tle snip­pet will vastly improve the image resiz­ing abil­i­ties of ie — bring­ing it closer to the resized image qual­ity expe­ri­enced with Fire­fox or Safari.

exam­ple

[seen at devthought via css-tricks]