Been very busy coding sites in CSS, my favorite document type is xhtml transitional, i don't do much strict these days because some of sites am working on have flash objects which don't validate well. It's very hard to do code which would render on the 3 major browsers, Firefox, IE and Safari. Like in Firefox you are crap shooting in rounding some property values, in IE some default margin is implemented and in Safari once it encountered a property which it does not supported all the css definitions are ignored.
Example in Safari:
/* CSS Code */ .wrap_center{ margin:auto; display:inline-block; }
The margin would not set in auto since the value of the property display : inline-block; is not supported.



Leave a Reply