HTML Tag training 11 every day -- & lt; table & gt; table 1

Source: Internet
Author: User

Before the prevalence of DIV, the <table> in HTML is powerful and occupies an important place. A variety of text, data, and many elements that can be directly browsed by the audience are included. After the popularization of the DIV framework, we need to spend more time learning the basic knowledge of table:
From this article, we will spend a few minutes to talk about it. <Table> A table is composed of <tr> <th> <td> <caption> and other elements. Just like a team, each element plays its own role and is combined, as a whole, the following is a simple example (try to copy to DW ):
<Html>
<Body>
<H4> the table has no border: <Table>
<Tr>
<Td> 100 </td>
<Td> 200 </td>
<Td> 300 </td>
</Tr>
</Table>
<H4> the table has a border: <Table border = "1">
<Tr>
<Td> 100 </td>
<Td> 200 </td>
</Tr>
</Table>
</Body>
</Html>

-- What is a table with the project name in the header? For example, copy it to DW ):
<Html>
<Body>
<H4> horizontal Header project: <Table border = "1">
<Tr>
<Th> name </th>
<Th> phone number </th>
</Tr>
<Tr>
<Td> night Wind </td>
<Td> 1234567890 </td>
</Tr>
</Table> www.2cto.com
<H4> vertical header: <Table border = "1">
<Tr>
<Th> name </th>
<Td> night Wind </td>
</Tr>
<Tr>
<Th> phone number </th>
<Td> 1234567890 </td>
</Tr>
</Table>
</Body>
</Html>

Related Article

Contact Us

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.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.