HTML可以透過為表格新增border屬性來新增邊框。推薦學習:html教學
範例:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> </head> <body> <table width="400" border="1" cellspacing="0" cellpadding="0"> <tr> <td >示例</td> <td >网址</td> <td >示例</td> </tr> <tr> <td>示例</td> <td>示例</td> <td>示例</td> </tr> <tr> <td>示例</td> <td>示例</td> <td>示例</td> </tr> </table> </body> </html>
效果圖:
border 簡寫屬性在一個聲明中設定所有的邊框屬性。
可以依序設定下列屬性:
border-width:規定邊框的寬度。
border-style:規定邊框的樣式。
border-color:規定邊框的顏色。
以上是html表格邊框的詳細內容。更多資訊請關注PHP中文網其他相關文章!