在CSS中,我們可以使用背景顏色和文字顏色來定制表格的外觀。以下是一些示例代碼,可以幫助您更好地了解如何在表格中設置顏色。
/*將表格背景色設置為淡綠色*/ table { background-color: #d5f5e3; } /*將表格文字顏色設置為深灰色*/ table td { color: #222; } /*將表格標題背景色設置為藍色*/ table caption { background-color: #3498db; } /*將表頭背景色設置為橙色*/ table th { background-color: #f39c12; color: #fff; } /*將每行交替設置背景色*/ table tr:nth-child(even) { background-color: #f2f2f2; } table tr:nth-child(odd) { background-color: #fff; }
使用上述代碼,您可以輕松地將表格樣式調整得更好看、更易于閱讀。