您好,登錄后才能下訂單哦!
這篇文章主要介紹“HTML表格的基本語法有哪些”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“HTML表格的基本語法有哪些”文章能幫助大家解決問題。
表格的基本語法
<table>...</table> - 定義表格
<tr> - 定義表行
<th> - 定義表頭
<td> - 定義表元(表格的具體數據)
帶邊框的表格:
復制代碼
代碼如下:
<table border>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Food | Drink | Sweet |
---|---|---|
A | B | C |
不帶邊框的表格:
復制代碼
代碼如下:
<table>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Food | Drink | Sweet |
---|---|---|
A | B | C |
跨多行、多列的表元(Table Span)
跨多列的表元 <th colspan=#>
復制代碼
代碼如下:
<table border>
<tr><th colspan=3> Morning Menu</th>
<tr><th>Food</th> <th>Drink</th> <th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Morning Menu | ||
---|---|---|
Food | Drink | Sweet |
A | B | C |
跨多行的表元 <th rowspan=#>
復制代碼
代碼如下:
<table border>
<tr><th rowspan=3> Morning Menu</th>
<th>Food</th> <td>A</td></tr>
<tr><th>Drink</th> <td>B</td></tr>
<tr><th>Sweet</th> <td>C</td></tr>
</table>
Morning Menu | Food | A |
---|---|---|
Drink | B | |
Sweet | C |
表格尺寸設置
<table border=#>
邊框尺寸設置:
復制代碼
代碼如下:
<table border=10>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Food | Drink | Sweet |
---|---|---|
A | B | C |
<table border width=# height=#>
表格尺寸設置:
復制代碼
代碼如下:
<table border width=170 height=100>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Food | Drink | Sweet |
---|---|---|
A | B | C |
<table border cellspacing=#>
表元間隙設置:
復制代碼
代碼如下:
<table border cellspacing=10>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Food | Drink | Sweet |
---|---|---|
A | B | C |
<table border cellpadding=#>
表元內部空白設置:
復制代碼
代碼如下:
<table border cellpadding=10>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Food | Drink | Sweet |
---|---|---|
A | B | C |
表格內文字的對齊/布局
<tr align=#>
<th align=#> #=left, center, right
<td align=#>
復制代碼
代碼如下:
<table border width=160>
<tr>
<th>Food</th><th>Drink</th><th>Sweet</th>
<tr>
<td align=left>A</td>
<td align=center>B</td>
<td align=right>C</td>
</table>
Food | Drink | Sweet |
---|---|---|
A | B | C |
<tr valign=#>
<th valign=#> #=top, middle, bottom, baseline
<td valign=#>
復制代碼
代碼如下:
<table border height=100>
<tr>
<th>Food</th><th>Drink</th>
<th>Sweet</th><th>Other</th>
<tr>
<td valign=top>A</td>
<td valign=middle>B</td>
<td valign=bottom>C</td>
<td valign=baseline>D</td>
</table>
Food | Drink | Sweet | Other |
---|---|---|---|
A | B | C | D |
表格在頁面中的對齊/布局(Floating Table)
<table align=left>
復制代碼
代碼如下:
<table align="left" border>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
My favorites...<br> cookies, chocolates, and more.
Food | Drink | Sweet |
---|---|---|
A | B | C |
My favorites...
cookies, chocolates, and more.
<table align=right>
Food | Drink | Sweet |
---|---|---|
A | B | C |
My favorites...
cookies, chocolates, and more.
<table vspace=# hspace=#> #=space value
復制代碼
代碼如下:
<table align="left" border vspace=20 hspace=30>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
My favorites...<br> cookies, chocolates, and more.
Food | Drink | Sweet |
---|---|---|
A | B | C |
My favorites...
cookies, chocolates, and more.
表格的標題
<caption align=#> ... </caption> #=left, center, right
復制代碼
代碼如下:
<table border>
<caption align=center>Lunch</caption>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Food | Drink | Sweet |
---|---|---|
A | B | C |
<caption valign=#> ... </caption> #=top, bottom
valign=top is default.
復制代碼
代碼如下:
<table border>
<caption valign=bottom>Lunch</caption>
<tr><th>Food</th><th>Drink</th><th>Sweet</th>
<tr><td>A</td><td>B</td><td>C</td>
</table>
Food | Drink | Sweet |
---|---|---|
A | B | C |
關于“HTML表格的基本語法有哪些”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。