1.字体属性: font-family; font-size; font-weight; font-variant; font-style; 2.文本属性: text-align; text-indent; line-height; letter-spacing; word-spacing; text-transform; direction; 3.列表属性: list-style-type; list-style-image; list-style-position; 4.其他 visibility; color; cursor;...
CSS特异性——优先级 http://www.w3.org/TR/CSS2/cascade.html#specificity 特异性 选择器的特异性由CSS2 规范定义如下: 如果声明来自于“style”属性,而不是带有选择器的规则,则记为 1,否则记为 0 (= a) 记为选择器中 ID 属性的个数 (= b) 记为选择器中其他属性和伪类的个数 (= c) 记为选择器...
head { display: none } table { display: table } tr { display: table-row } thead { display: table-header-group } tbody { display: table-row-group } tfoot { display: table-footer-group } col { display: table-column } colgroup { display: table-column-group } td, th { display: tab...
1. CSS表达式: CSS expressions only work in Internet Explorer background-color: expression((new Date()).getHours()%2 ?"#B8D4FF" :"#F08A00"); expression方法接受一个JavaScript表达式,CSS属性将被设置为对js表达式进行求值得结果。 expression被其他浏览器忽略,但却是IE浏览器创建跨浏览器有效方法。 I...