CSS Table背景色設置方法
在CSS中,可以使用background-color
屬性為表格(table)添加背景色,以下是一些示例代碼:
1、為整個表格設置背景色:
table { background-color: #f0f0f0; }
2、為表格的某個特定行或單元格設置背景色:
table tr:nth-child(even) { background-color: #f0f0f0; } table td:nth-child(2) { background-color: #ff0000; }
在上面的代碼中,tr:nth-child(even)
表示偶數(shù)行,td:nth-child(2)
表示第二列。
3、為表格的頭部(thead)和主體(tbody)設置不同的背景色:
table thead { background-color: #f0f0f0; } table tbody { background-color: #ffffff; }
4、為表格的特定列設置背景色:
table col:nth-child(2) { background-color: #ff0000; }
在上面的代碼中,col:nth-child(2)
表示第二列,注意,這種方法只在某些瀏覽器(如Firefox)中有效,在大多數(shù)瀏覽器中,列的樣式通常應用于列中的每個單元格,更常見的做法是為每個單元格設置背景色。
background-color
屬性僅適用于塊級元素(如表格、行、單元格等),如果要將背景色應用于表格中的文本,可以使用color
屬性。
版權聲明:除非特別標注,否則均為本站原創(chuàng)文章,轉載時請以鏈接形式注明文章出處。