Use the block-level element div as little as possible. In fact, like table, the less nested the better, it will also affect the speed!
ol ordered list.
- ……
- ……
- ……
behaves as:
1......
2......
3......
ul Unordered list, behaves like li is preceded by a big dot instead of 123
Many people tend to ignore the usage of dl dt dd
dl content block
dt Title of content block
dd Content
Write like this:
- Title
- Content1 dd>
- Content 2