CSS sprites and IE6

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

Does IE6 support css-sprites?

相关标签:
9条回答
  • 2021-02-10 07:28

    You can also use Glue http://gluecss.com/ It's an open-source command line tool to generate sprites.

    0 讨论(0)
  • 2021-02-10 07:30

    Sprites can work perfectly in ie6. But a png image will not work, so use a gif. If you process a gif with Smush.it to losslessly remove overhead, you might get a file size smaller than the corresponding png.

    0 讨论(0)
  • 2021-02-10 07:32

    Yes. If you're using PNGs though you should consider a few things. Here is a decent summary of IE 6 PNG issues:

    http://24ways.org/2007/supersleight-transparent-png-in-ie6

    0 讨论(0)
  • 2021-02-10 07:35

    Browsers which support background-position property will support CSS sprites also.

    CSS Sprites: What They Are, Why They’re Cool, and How To Use Them

    Please take a look at the following questions also

    CSS Sprites images rendered with bad quality in IE

    CSS Sprite Help

    0 讨论(0)
  • 2021-02-10 07:37

    You could just use an online sprites generator. There are so many of them available for free and most of them support all browsers.

    0 讨论(0)
  • 2021-02-10 07:44

    Yes.

    CSS sprites is just a technique to use offset on background images to display different parts of the same image in different elements.

    I use CSS sprites on for example the main menu on the website of the company I work for, and the flags on my own web site. I started using it before it was even called CSS sprites...

    0 讨论(0)
提交回复
热议问题