表格邊框
如需在 CSS 中設定表格邊框,請使用 border 屬性。 ( 建議學習:CSS入門教學 )
下面的範例為table、th 以及td 設定了藍色邊框:
<html> <head> <style type="text/css"> table,th,td { border:1px solid blue; } </style> </head> <body> <table> <tr> <th>Firstname</th> <th>Lastname</th> </tr> <tr> <td>Bill</td> <td>Gates</td> </tr> <tr> <td>Steven</td> <td>Jobs</td> </tr> </table> </body> </html>
請注意,上例中的表格具有雙線邊框。這是由於 table、th 以及 td 元素都有獨立的邊框。
如果需要把表格顯示為單一線條邊框,請使用 border-collapse 屬性。
以上是CSS的表格邊框使用什麼屬性設置的詳細內容。更多資訊請關注PHP中文網其他相關文章!