博客列表 >CSS 优先级和权重-复习

CSS 优先级和权重-复习

异乡客
异乡客原创
2022年05月08日 14:37:38573浏览

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>优先级和权重</title>
</head>
<body>
<h1 class="title test" id="active today">hello</h1>

  1. <div class="col-md-3 vip">
  2. Boottrap
  3. </div>
  4. <style>
  5. div.col-md-3.vip{
  6. border: solid red;
  7. }
  8. div.col-md-3 {
  9. border: solid #002;
  10. }
  11. body h1.title.test#active#today{
  12. color: darkorange;
  13. }
  14. body h1.title{
  15. color: red;
  16. }
  17. body h1{
  18. color: darkblue;
  19. }
  20. h1{
  21. color: darkgreen;
  22. }
  23. /* 权重计算 */
  24. /* id数量,class数量,标签数量 */
  25. </style>
  26. </body>
  27. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议