CSS 书写相关


CSS hack:IE6,IE7,firefox显示不同效果
http://www.iwms.net/n1846c40.aspx

注:不管是什么方法,书写的顺序都是firefox的写在前面,IE7的写在中间,IE6的写在最后面。 
IE6支持下划线,IE7和firefox均不支持下划线。

区别FF,IE7,IE6: 
background:orange;*background:green;_background:blue;  





CSS中属性的书写顺序
http://lifesinger.org/blog/2009/02/the-order-css-rules/

传说中的Mozilla推荐
/*  mozilla.org Base Styles
 * maintained by fantasai
 
*/
/*  Suggested order:
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
 *
 
*/

来源:http://www.mozilla.org/css/base/content.css

你可能感兴趣的:(css)