HTML class 属性

HTML 全局属性 class 规定元素的类名(classname)。class 属性大多数时候用于指向样式表中的类(class)。不过,也可以利用它通过 JavaScript 来改变带有指定 class 的 HTML 元素。


实例

在 HTML 文档中使用 class 属性:

  1. <html>
  2. <head>
  3. <style type="text/css">
  4. h1.intro {color:blue;}
  5. p.important {color:red;}
  6. </style>
  7. </head>
  8. <body>
  9. <h1 class="intro">标题1</h1>
  10. <p>这是一个段落。</p>
  11. <p class="important">请注意这个重要的段落。:)</p>
  12. </body>
  13. </html>

定义和用法

class 属性规定元素的类名(classname)。class 属性大多数时候用于指向样式表中的类(class)。不过,也可以利用它通过 JavaScript 来改变带有指定 class 的 HTML 元素。


提示和注释

注释:class 属性不能在以下 HTML 元素中使用:base, head, html, meta, param, script, style 以及 title。

提示:可以给 HTML 元素赋予多个 class,例如:<span class="left_menu important">。这么做可以让一个 HTML 元素拥有多个CSS样式类。

提示:类名不能以数字开头!只有 Internet Explorer 支持这种命名方式。


浏览器支持

W3C: "W3C" 列指示 W3C 的 HTML/XHTML 推荐标准中是否定义了该属性。

属性
classYesYesYesYesYes

语法

  1. <element class="value">
属性值
描述
classname规定元素的类的名称。如需为一个元素规定多个类,用空格分隔类名。

更多实例

一个html拥有多个CSS样式类

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. h1.intro {
  6. color: blue;
  7. text-align: center;
  8. }
  9. .important {
  10. background-color: yellow;
  11. }
  12. </style>
  13. </head>
  14. <body>
  15. <h1 class="intro important">标题1</h1>
  16. <p>这是一个段落。</p>
  17. </body>
  18. </html>
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <div class="example">第1个div元素 用 class="example" 样式。</div>
  5. <div class="example">第2个div元素 用 class="example" 样式。</div>
  6. <p>单击按钮将黄色背景色添加到class=“example”(索引0)的第一个div元素。</p>
  7. <button onclick="myFunction()">点击一下</button>
  8. <script>
  9. function myFunction() {
  10. var x = document.getElementsByClassName("example");
  11. x[0].style.backgroundColor = "yellow";
  12. }
  13. </script>
  14. </body>
  15. </html>
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. .mystyle {
  6. margin: 20px;
  7. width: 300px;
  8. height: 50px;
  9. background-color: coral;
  10. color: white;
  11. font-size: 25px;
  12. }
  13. </style>
  14. </head>
  15. <body>
  16. <p>点击按钮把 mystyle 样式添加到div元素</p>
  17. <button onclick="myFunction()">Try it</button>
  18. <div id="myDIV">
  19. 我有一个div元素
  20. </div>
  21. <br>
  22. <script>
  23. function myFunction() {
  24. document.getElementById("myDIV").classList.add("mystyle");
  25. }
  26. </script>
  27. </body>
  28. </html>