1. 详解CSS选择器、优先级与匹配原理
2. 5步让你的CSS样式表成功减肥
3. 10个CSS简写技巧让你永远受用
4. CSS的声明中,对于选择器的描述方式有多种不同的写法和适用范围:
A. 标签名选择器声明方式:p {color: red;} --- 选中某种元素
B. 分组选择器声明方式:h1, h2, h3 {color: red;} --- 选中固定数目的多种元素
C. 派生选择器声明方式:li td {color: red;} --- 选中某种上下文关系元素
D. ID选择器声明方式: #title {color: red;} --- 选中指定id元素
E. Class选择器声明方式: .title {color: red;} --- 选中不定数目的多种元素
F. ID派生选择器声明方式: #title table {color: red;} --- 选中指定id下特定上下文关系元素
G. Class派生选择器声明方式: .title table {color: red;} --- 选中多种类型下特定上下文关系元素
H. 类型选择器声明方式:table.title {color: red;} --- 选中某种元素的某种类型
I. 伪类选择器声明方式:a:visited {color: red;} --- 选中某种状态下元素
J. 类型伪类选择器声明方式:a.news:visited {color: blue;} --- 选中某种元素的某种状态下的类型
-------------------------------------------------------------
生活就像打牌,不是要抓一手好牌,而是要尽力打好一手烂牌。
posted on 2010-11-09 10:45
Paul Lin 阅读(358)
评论(0) 编辑 收藏 所属分类:
Web基础