怎么在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屬性設置了整個表格背景色,表格的列背景色,表格單元格背景色,供題主參考,效果圖如下: