Kor
06-01-2009, 12:57 PM
As you might know, IE6 and IE7 have a separate syntax for CSS clip attribute:
Standard CSS:
.myclass{
clip:rect(0,286px,168px,251px);
}
IE6 and IE7 do not like the commas :
clip:rect(0 286px 168px 251px)
My question is: Does IE8 keep the IE6 and IE7 behavior? Or it follows, finally the standards? I don't have (nor I don't want to) IE8 installed, so that... :)
Standard CSS:
.myclass{
clip:rect(0,286px,168px,251px);
}
IE6 and IE7 do not like the commas :
clip:rect(0 286px 168px 251px)
My question is: Does IE8 keep the IE6 and IE7 behavior? Or it follows, finally the standards? I don't have (nor I don't want to) IE8 installed, so that... :)