怎么在table html设置颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么在table html设置颜色相关的知识,希望对你有一定的参考价值。
题主说的是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属性设置了整个表格背景色,表格的列背景色,表格单元格背景色,供题主参考,效果图如下:
参考技术A background:#fff;以上是关于怎么在table html设置颜色的主要内容,如果未能解决你的问题,请参考以下文章