开发者

Background-size property equivalent to IE

开发者 https://www.devze.com 2023-03-17 22:39 出处:网络
Is there an equivalent to backgrou开发者_C百科nd-size:cover in IE pre-version 9? I have a book on CSS3 that just seems to say previous versions of IE just don\'t use this property and they don\'t give

Is there an equivalent to backgrou开发者_C百科nd-size:cover in IE pre-version 9? I have a book on CSS3 that just seems to say previous versions of IE just don't use this property and they don't give a workaround.


Apparently, you could use the following (untested)

pre IE8 use -

filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='linkToImage.jpg',sizingMethod='scale');

IE8 use -

-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='linkToImage.jpg',sizingMethod='scale')";

Using the sizingMethod= 'scale' means that even IE will scale the background image to the size of the browser window.

Source: http://www.pziecina.com/design/turorial_demos/resize_background.php

0

精彩评论

暂无评论...
验证码 换一张
取 消