課程
/前端開發(fā)
/HTML/CSS
/初識HTML(5)+CSS(3)-升級版
html列表怎么做?
2017-11-27
源自:初識HTML(5)+CSS(3)-升級版 1-5
正在回答
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
</style>
</head>
<body>
?<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</table>
</body>
</html>
<table>是整體的框架
<caption>標(biāo)題 這個(gè)標(biāo)題看情況要不要
<tr>代表一行
<td>代表一個(gè)單元格內(nèi)容
開始<table>
標(biāo)題<caption>標(biāo)題文本</caption>
第一行開頭<tr>
單元格<th>內(nèi)容</th>單元格<th>內(nèi)容</th>單元格<th>內(nèi)容</th>……
剩下的每一行<tr>
單元格<td>內(nèi)容</td>單元格<td>內(nèi)容</td>單元格<td>內(nèi)容</td>……
</table>結(jié)束
舉報(bào)
HTML(5)+CSS(3)基礎(chǔ)教程8小時(shí)帶領(lǐng)大家步步深入學(xué)習(xí)標(biāo)簽用法和意義
4 回答html下拉列表可以設(shè)置尺寸嗎?
2 回答html中表單
6 回答html表單問題
3 回答id詞列表
5 回答無需列表
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網(wǎng)安備11010802030151號
購課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號
2017-11-27
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
</style>
</head>
<body>
?<table border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
</body>
</html>
2017-11-27
<table>是整體的框架
<caption>標(biāo)題 這個(gè)標(biāo)題看情況要不要
<tr>代表一行
<td>代表一個(gè)單元格內(nèi)容
2017-11-27
開始<table>
標(biāo)題<caption>標(biāo)題文本</caption>
第一行開頭<tr>
單元格<th>內(nèi)容</th>單元格<th>內(nèi)容</th>單元格<th>內(nèi)容</th>……
</tr>
剩下的每一行<tr>
單元格<td>內(nèi)容</td>單元格<td>內(nèi)容</td>單元格<td>內(nèi)容</td>……
</tr>
</table>結(jié)束