CSS sprites and IE6

后端 未结 9 2350
情歌与酒
情歌与酒 2021-02-10 07:19

Does IE6 support css-sprites?

9条回答
  •  借酒劲吻你
    2021-02-10 07:51

    Yes IE 6 supports sprites but doesn't support 24 bit PNG transparency.

    I use this css hack for giving IE < 7 a gif file and everything else a 24 bit png with transparency.

    background-image:url(/images/sprites/icons-sprite.png);
    _background-image:url(/images/sprites/icons-sprite.gif); /* IE<7 gets the crappy icons */
    

提交回复
热议问题