123456789101112131415161718 |
- <!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>
- <!--
- 选择器优先级:
- !important > 内联样式 > id选择器 >类选择器 = 伪类选择器 = 属性选择器 > 伪元素选择器 = 标签选择器 > 通配符选择器
- 正无穷 1,0,0,0 0,1,0,0 0,0,1,0 0,0,0,1 0,0,0,0
- html标签为什么要语义化?
- 1.便携开发,可以帮助快速阅读代码
- 2.为了方便搜索引擎 进行爬虫
- -->
- </body>
- </html>
|