Webcourse/03-CSS进阶/01-HTML基础强化.md

67 lines
1.2 KiB
Markdown
Raw Normal View History

2019-10-02 23:25:23 +08:00
## 本文主要内容
- html 常见元素和理解
- html版本
- html 元素分类
- html 元素嵌套关系
- html 元素默认样式和定制化
- html 常见面试题
## html的 常见元素
html 的常见元素主要分为两类head 区域的元素、body 区域的元素。下面来分别介绍。
### 1、head 区域的 html 元素
> head 区域的 html 元素,不会在页面上留下直接的内容。
- meta
- title
- style
- link
- script
- base
2019-10-03 16:25:14 +08:00
**base**
```html
<base href="/">
```
base 标签用于指定基础的路径。指定之后,所有的 a 链接都是以这个路径为基准。
2019-10-02 23:25:23 +08:00
### 2、html 元素body 区域)
> body 区域的 html 元素,会直接出现在页面上。
- div、section、article、aside、header、footer
- p
- span、em、strong
2019-10-03 16:25:14 +08:00
- 表格元素table、thead、tbody、tr、td
2019-10-02 23:25:23 +08:00
2019-10-03 16:25:14 +08:00
- 列表元素ul、ol、dl、dt、dd
2019-10-02 23:25:23 +08:00
- a
2019-10-03 16:25:14 +08:00
- 表单元素form、input、select、textarea、button
2019-10-02 23:25:23 +08:00
div 是最常见的元素大多数场景下都可以用div实在不行就多包几层div。可见**div 是比较通用的元素,这也决定了 div 的的语义并不是很明确**。