在網頁製作之中,表格標籤是常用的標籤之一,例如製作表格,或利用表格的整齊性來設定頁面佈局。
其中table有不少屬性,例如:border,bordercolor,cellspacing,width,height,bgcolor。 boder表示外框邊線的粗細,bodercolor表示邊線的顏色,cellspacing表示單元格之間的空隙,width表示表格的寬,height表示表格的高,bgcolor表示背景色。
<html> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <head> <title size="10" color="red">welcome to HTML</title> </head> <body> <table border="1" bordercolor="blue" cellspacing="0" width="400" height="150"> <tr align="center"> <td>姓名</td> <td>性别</td> <td>年龄</td> </tr> <tr> <td>carson</td> <td>男</td> <td>24</td> </tr> <tr> <td>thl</td> <td>女</td> <td>24</td> </tr> <tr> <td>Alice</td> <td>女</td> <td>24</td> </tr> </table> </body> </html>
效果圖:
以上是html表格標籤的詳細內容。更多資訊請關注PHP中文網其他相關文章!