0

Should we use IE's CSS Dynamic properties?

I read IE8+ would not support these.

What is the best strategy to handle this?

Bill the Lizard
  • 398,270
  • 210
  • 566
  • 880
rajakvk
  • 9,775
  • 17
  • 46
  • 49

3 Answers3

2

If you mean CSS expressions, you should avoid them because they're slow.

Your question about how to avoid them is pretty vague. It would be easier to answer a more specific question. But here's a vague answer: Javascript. :)

Warren Young
  • 40,875
  • 8
  • 85
  • 101
1

They are very useful to solve incompatibility problems with older versions of IE, for example to get png transparency in IE6. I always (when needed...) include style-sheets using these functionalities in IE's conditional comments.

jeroen
  • 91,079
  • 21
  • 114
  • 132
0

The dynamic properties wasn't anything that really took off. It could be used in applications that targeted IE only (i.e. intranets and such), but as it never became a standard and no other browser supports it, it never came into wide use on the web.

I haven't read what you say about IE8 not supporting dynamic properties, and I haven't tried it, but it sounds very plausible that the will not be supported when the browser renders a page in standards compliant mode. They will probably be supported in quirks mode for a few versions longer.

Guffa
  • 687,336
  • 108
  • 737
  • 1,005