Blogger Information
Blog 18
fans 0
comment 3
visits 12466
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
通过盒子的背景色演示css权重计算
P粉019280626
Original
235 people have browsed it
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>通过盒子的背景色演示css权重计算</title>
  8. <!-- <link rel="stylesheet" href="css/quanzhongdemo.css"> -->
  9. </head>
  10. <body>
  11. <h3>权重001的盒子</h3>
  12. <h3 class="zhegai1">权重011的盒子</h3>
  13. <h3 id="zhegai2">权重100的盒子</h3>
  14. <style>
  15. h3 {
  16. color:blue
  17. }
  18. /* 0 0 1 ,百位十位均为0,tag位为1 */
  19. h3 {
  20. color:red
  21. }
  22. /* 011,十位1是class的zhengai1,个位1是类h3 */
  23. h3.zhegai1 {
  24. color:cyan
  25. }
  26. /* 1 0 0 ,1是ID属性为zhegai2的元素,百位为1,其余位为0 */
  27. #zhegai2 {
  28. color:darkorange
  29. }
  30. </style>
  31. </body>
  32. </html>
  33. ![](https://img.php.cn/upload/image/800/702/260/1676177462992382.png)
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments