I coded the following in my page (because this DynamicDrive script told me to):
<body onload="makesnake()" style="overflow-x:hidden;">
and received the following at validation time:
Line : 23 property overflow-x does not exist for this profile, but is validated conforming to another profile
How do I fix this?I believe overflow-x|y are for the proposed CSS3 standard, thus they are not part of the current CSS2 standard.OK, anybody know why this appears to not actually be working in IE6? I'm specifying the Transitional DOCTYPE, but the horizontal scrollbar still appears when the mouse tail (from the script) extends beyond the right margin. Since IE "invented" this style, it should at least work in IE. Yes? ...or, would I have to remove the DOCTYPE altogether in order to get this to work in IE?
<body onload="makesnake()" style="overflow-x:hidden;">
and received the following at validation time:
Line : 23 property overflow-x does not exist for this profile, but is validated conforming to another profile
How do I fix this?I believe overflow-x|y are for the proposed CSS3 standard, thus they are not part of the current CSS2 standard.OK, anybody know why this appears to not actually be working in IE6? I'm specifying the Transitional DOCTYPE, but the horizontal scrollbar still appears when the mouse tail (from the script) extends beyond the right margin. Since IE "invented" this style, it should at least work in IE. Yes? ...or, would I have to remove the DOCTYPE altogether in order to get this to work in IE?