Support 'background-size' property on older browsers?

前端 未结 6 1557
鱼传尺愫
鱼传尺愫 2020-12-16 23:06

Is there a way that I can use the CSS3 \'Background-Size\' property and then use something like Modernizr to ensure that it\'s supported in older browsers (in particular I w

6条回答
  •  甜味超标
    2020-12-16 23:59

    You can see support for background-size and its properties at: http://www.standardista.com/css3/css3-background-properties

    This CSS supports IE9+, FireFox 3.6+, Safari, Chrome:

    background-size: cover;
    -moz-background-size: cover;
    

    For IE7/8 support, caniuse.com lists this polyfill: https://github.com/louisremi/background-size-polyfill

提交回复
热议问题