©
Dieses Dokument verwendet PHP-Handbuch für chinesische Websites Freigeben
E.myclass { sRules }
类选择符(Class Selector)
不同于ID选择符的唯一性,类选择符可以同时定义多个,如:
定义多个类:
.a { color: #f00; } .b { font-weight: 700; } <div class="a b">给某个div元素定义.a和.b两个类</div>
注意,id选择符不能在同个元素上定义多个,比如id="a b"就是错误的写法
类选择符高级用法:多类选择符
.a.b { color: #f00; } <div class="a b">多类选择符使用方法</div>
此例命中同时拥有.a和.b两个类的元素。需要注意的是IE6并不支持多类选择符,如:.a.b{}将会被视为:.b{}
IE | Firefox | Chrome | Safari | Opera | iOS Safari | Android Browser | Android Chrome |
---|---|---|---|---|---|---|---|
6.0 #1 | 2.0+ | 4.0+ | 3.1+ | 3.5+ | 3.2+ | 2.1+ | 18.0+ |
7.0+ |
不支持多类选择符,形如:.a.b {}
<!DOCTYPE html> <html lang="zh-cmn-Hans"> <head> <meta charset="utf-8" /> <title>class选择符 (E.myclass)_CSS参考手册_web前端开发参考手册系列</title> <meta name="author" content="Joy Du(飘零雾雨), dooyoe@gmail.com, www.doyoe.com" /> <style> .title { font-size: 20px; } p.content { font-size: 13px; } .content.note { font-size: 30px; } </style> </head> <body> <h1 class="title">标题</h1> <p class="content">正文内容</p> <p class="content note">多类选择符的使用</p> </body> </html>
点击 "运行实例" 按钮查看在线实例