update: HTML 标签

This commit is contained in:
qianguyihao
2019-10-03 16:25:14 +08:00
parent 392be3a010
commit 816c514f29
5 changed files with 100 additions and 219 deletions

View File

@@ -36,6 +36,14 @@ html 的常见元素主要分为两类head 区域的元素、body 区域的
- base
**base**
```html
<base href="/">
```
base 标签用于指定基础的路径。指定之后,所有的 a 链接都是以这个路径为基准。
### 2、html 元素body 区域)
> body 区域的 html 元素,会直接出现在页面上。
@@ -46,13 +54,13 @@ html 的常见元素主要分为两类head 区域的元素、body 区域的
- span、em、strong
- table、thead、tbody、tr、td
- 表格元素:table、thead、tbody、tr、td
- ul、ol、dl、dt、dd
- 列表元素:ul、ol、dl、dt、dd
- a
- form、input、select、textarea、button
- 表单元素:form、input、select、textarea、button
div 是最常见的元素大多数场景下都可以用div实在不行就多包几层div。可见**div 是比较通用的元素,这也决定了 div 的的语义并不是很明确**。