Web/03-CSS进阶/01-HTML基础强化.md
2019-10-02 23:25:23 +08:00

59 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

## 本文主要内容
- html 常见元素和理解
- html版本
- html 元素分类
- html 元素嵌套关系
- html 元素默认样式和定制化
- html 常见面试题
## html的 常见元素
html 的常见元素主要分为两类head 区域的元素、body 区域的元素。下面来分别介绍。
### 1、head 区域的 html 元素
> head 区域的 html 元素,不会在页面上留下直接的内容。
- meta
- title
- style
- link
- script
- base
### 2、html 元素body 区域)
> body 区域的 html 元素,会直接出现在页面上。
- div、section、article、aside、header、footer
- p
- span、em、strong
- table、thead、tbody、tr、td
- ul、ol、dl、dt、dd
- a
- form、input、select、textarea、button
div 是最常见的元素大多数场景下都可以用div实在不行就多包几层div。可见**div 是比较通用的元素,这也决定了 div 的的语义并不是很明确**。