3_层叠样式表.html 534 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. /* css 权重值 */
  9. /* ID选择器 > 类选择器 > 标签选择 */
  10. div{
  11. font-size: 30px;
  12. color: green;
  13. }
  14. .box1{
  15. color: red;
  16. }
  17. #div1{
  18. color: blue;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div class="box1" id="div1">hello world</div>
  24. </body>
  25. </html>