欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

怎么在tablehtml設置顏色

江奕云2年前18瀏覽0評論

怎么在tablehtml設置顏色?

題主說的是html中表格怎么設置背景顏色是嗎,table標簽的顏色可以通過設置class或者style屬性中的 background-color 來設置,比如:

<table class="table table-bordered" style="background-color:#eee"> <thead> <tr> <th>名稱</th> <th>城市</th> </tr> </thead> <tbody> <tr style="background-color:#96b97d"> <td>Tanmay</td> <td>Bangalore</td> </tr> <tr> <td style="background-color:#ccc">Sachin</td> <td>Mumbai</td> </tr> </tbody></table>

這里我通過style屬性設置了整個表格背景色,表格的列背景色,表格單元格背景色,供題主參考,效果圖如下:

css中table,怎么在tablehtml設置顏色