Description of list elements commonly used in web page layout: ul ol li dl dt dd
Source: Internet
Author: User
The list element ul ol li dl dt dd, commonly used in div css webpage layout, should be used as little as possible. Like table, the fewer nesting, the better
Ol ordered list.
<Ol>
<Li> ...... </Li>
<Li> ...... </Li>
<Li> ...... </Li>
</Ol>
Performance:
1 ......
2 ......
3 ......
Ul unordered list, represented by a large circle before li rather than 123
<Ul>
<Li> ...... </Li>
<Li> ...... </Li>
</Ul>
Many people tend to ignore the use of dl dt dd.
Dl content block
Title of the dt content block
Dd content
This can be written as follows:
<Dl>
<Dt> title </dt>
<Dd> Content 1 </dd>
<Dd> content 2 </dd>
</Dl>
You can add ol ul li and p to dt and dd.
After understanding this, it is much easier to use div layout. w3c provides many elements to assist layout.
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.