123456789101112131415 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- </head>
- <body>
- <p>
- 选择器:!important > 内联样式 > id选择器 >类选择器 = 属性选择器 = 伪类选择器 > 伪元素选择器 = 标签选择器 > 通配符选择器
- 优先级:正无穷 1,0,0,0 0,1,0,0 0,0,1,0 0,0,0,1 0,0,0,0
-
- </p>
- </body>
- </html>
|