Forum Moderators: not2easy
The code I was given was pretty slick using inline styles to check for CSS-1 or CSS-P by hiding and changing text color. Unfortunately, I can't use that in my overall system check.
Thanks for the response.
I'd suggest you try play with the css property.
e.g. say you have a div which you have sized using css. Check its size is what you set it by something like:
if (this.css.width)
supports_css = parseInt(this.css.width) == what_my_css_set_it_to;
Sorry, taht is not a cmplete answer. I am sure there is a way. Hopefully experimenting with that will lead somewhere.
Shawn