一、文章有各種資料的表格這個網頁也不例外。
(1)、標籤意思
-------------表頭 |
---|
(2)、表格樣式
cellpadding 屬性設定儲存格邊框和單元格內容的距離。
height 設定表格的高。 [註]:高這個屬性最好不小給
table 中寫,讓它自動撐開就好。但這個可以給tr 給每行所需的高度
程式碼
<html>
<head>
<title>表格</title>
</head>
<body>
<table border="1px" width="500px" cellpadding="10px" cellspacing="10px">
<caption>表格标题</caption>
<tr height="50px">
<th>表头</th>
<th>表头</th>
</tr>
<tr>
<td>单元格</td>
<td>单元格</td>
</tr>
</table>
</body>
</html>
<html> <head> <title>表格</title> </head> <body> <ul type="circle"> <li>无序列表</li> </ul> </body> </html>
效果
Ⅰ(大寫羅馬數字ㅀ㠀㠡、 Ⅰ( (start屬性)
代碼
<html> <head> <title>有序列表</title> </head> <body> <ol type="A"> <li>有序列表</li> <li>有序列表</li> <li>有序列表</li> </ol> </body> </html>
以上是html中表格與清單的實例教程的詳細內容。更多資訊請關注PHP中文網其他相關文章!