我們可以使用CSS來定義表格的樣式。以下屬性用於為及其元素定義樣式: borderCSS的border屬性用於定義邊框寬度、邊框樣式和邊框顏色。 border-collapse此屬性用於指定元素是否應具有共享或獨立的邊框。 captioncaption-side屬性用於垂直定位表格標題框。 empty-cells此屬性用於指定表格的空白儲存格的顯示方式。 table-layout用於定義瀏覽器在佈局表格的行、列和單元格時所使用的演算法。 範例 以下範例示範了表格的樣式: 即時示範 body { font-family: 'Bookman Old Style', serif; } th { letter-spacing: 1.9px; } #one { border-right: thick solid blue; } td { text-align: center; } Employee List Employee Department John Marketing Brad Finance Tim IT Steve Operations 登入後複製OutputThis gives the following output −#Example Live Demo table { float: left; empty-cells: hide; box-shadow: inset 0 0 4px orange; } tr { box-shadow: inset 0 0 10px greenyellow; } td { font-style: italic; box-shadow: inset 0 0 8px red; } table,td { margin: 6px; padding: 6px; border: 1px solid black; } table Demo Table Head 1 Head 2 Head 3 demo demo demo 登入後複製Output #This gives the following output −