CSS element.class 属性


实例

选择并设置类名为 "intro" 的 <p> 元素的样式:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. p.intro {
  6. background-color: yellow;
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <h2>欢迎来到我的主页</h2>
  12. <div class="intro">
  13. <p>我叫唐纳德。</p>
  14. <p>我住在达克堡。</p>
  15. </div>
  16. <p>我最好的朋友是米奇。</p>
  17. <p class="intro">我最好的朋友是米奇。</p>
  18. </body>
  19. </html>

定义和用法

element.class 选择器用于选取带有指定类的指定元素。

版本:CSS1

浏览器支持

选择器
element.classYesYesYesYesYes

CSS 语法

element.class { css declarations;}

版本: CSS2

分类导航