好看的表格是網(wǎng)頁(yè)設(shè)計(jì)中必不可少的一部分,表格的樣式往往是通過(guò) CSS 實(shí)現(xiàn)的。下面給大家介紹一些實(shí)現(xiàn)好看表格的 CSS 技巧。
/* 設(shè)置表格的外邊距和內(nèi)邊距 */ table { margin: 20px; padding: 0; border-collapse: collapse; } /* 設(shè)置表格的邊框 */ td, th { border: 1px solid #ddd; padding: 8px; text-align: left; } /* 設(shè)置表頭的背景色和文字顏色 */ th { background-color: #333; color: #fff; } /* 設(shè)置隔行變色 */ tr:nth-child(even) { background-color: #f2f2f2; } /* 設(shè)置鼠標(biāo)懸停時(shí)的背景色 */ tr:hover { background-color: #ddd; } /* 設(shè)置表格列寬 */ td:nth-child(1), th:nth-child(1) { width: 20%; } td:nth-child(2), th:nth-child(2) { width: 30%; } td:nth-child(3), th:nth-child(3) { width: 50%; }
通過(guò)以上 CSS 樣式,我們可以實(shí)現(xiàn)表格的外邊距和內(nèi)邊距的設(shè)置,以及表格的邊框,表頭的背景色和文字顏色,表格隔行變色,鼠標(biāo)懸停時(shí)的背景色等效果。
同時(shí),通過(guò)設(shè)置表格列寬,我們可以使表格看起來(lái)更加美觀和整齊。
總之,精美的表格設(shè)計(jì)可以為網(wǎng)頁(yè)增添很多亮點(diǎn),通過(guò)上述 CSS 技巧,相信大家可以輕松實(shí)現(xiàn)自己想要的表格樣式。