主頁 > 知識(shí)庫 > 表格(TABLE)標(biāo)記(TAGS)詳細(xì)介紹

表格(TABLE)標(biāo)記(TAGS)詳細(xì)介紹

熱門標(biāo)簽:青海保險(xiǎn)智能外呼系統(tǒng)商家 新鄉(xiāng)機(jī)器人外呼系統(tǒng) 最簡單的百度地圖標(biāo)注店鋪 錦州企業(yè)外呼系統(tǒng) 水經(jīng)注萬能地圖標(biāo)注 AI外呼系統(tǒng) 價(jià)格 梧州地圖標(biāo)注app 禹州電話外呼系統(tǒng) 營口400電話申請
表格的基本語法

<table>...</table> - 定義表格
<tr> - 定義表行
<th> - 定義表頭
<td> - 定義表元(表格的具體數(shù)據(jù))

帶邊框的表格: 


復(fù)制代碼
代碼如下:

<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


不帶邊框的表格:

復(fù)制代碼
代碼如下:

<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=#>


復(fù)制代碼
代碼如下:

<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=#>



復(fù)制代碼
代碼如下:

<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

 表格尺寸設(shè)置

<table border=#>

邊框尺寸設(shè)置: 


復(fù)制代碼
代碼如下:

<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=#>

表格尺寸設(shè)置: 


復(fù)制代碼
代碼如下:

<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=#>

表元間隙設(shè)置: 


復(fù)制代碼
代碼如下:

<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=#>

表元內(nèi)部空白設(shè)置: 


復(fù)制代碼
代碼如下:

<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

 表格內(nèi)文字的對齊/布局

<tr align=#>

<th align=#> #=left, center, right

<td align=#>

復(fù)制代碼
代碼如下:

<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=#>

復(fù)制代碼
代碼如下:

<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>


復(fù)制代碼
代碼如下:

<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


復(fù)制代碼
代碼如下:

<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.

 表格的標(biāo)題

<caption align=#> ... </caption> #=left, center, right

復(fù)制代碼
代碼如下:

<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>

Lunch

Food Drink Sweet
A B C

<caption valign=#> ... </caption> #=top, bottom

valign=top is default.


復(fù)制代碼
代碼如下:

<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
Lunch

標(biāo)簽:荊門 昭通 青島 懷化 潮州 延邊 哈密 山南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《表格(TABLE)標(biāo)記(TAGS)詳細(xì)介紹》,本文關(guān)鍵詞  表格,TABLE,標(biāo)記,TAGS,詳細(xì),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《表格(TABLE)標(biāo)記(TAGS)詳細(xì)介紹》相關(guān)的同類信息!
  • 本頁收集關(guān)于表格(TABLE)標(biāo)記(TAGS)詳細(xì)介紹的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章