table 设置每列的颜色

Posted hill-foryou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了table 设置每列的颜色相关的知识,希望对你有一定的参考价值。

ISBNTitlePrice
3476896 My first html $53
5869207 My first CSS $49

 

 
<!DOCTYPE html>
<html>
<head> 
<meta charset="utf-8"> 
<title></title> 
</head>
<body>

<table border="1" clas="left">
  <colgroup>
    <col style="background-color:red;width: 100px;text-align:left;">
    <col style="background-color:orange">
    <col style="background-color:orange">
  </colgroup>
  <tr>
    <th >ISBN</th>
    <th>Title</th>
    <th>Price</th>
  </tr>
  <tr>
    <td>3476896</td>
    <td>My first HTML</td>
    <td>$53</td>
  </tr>
  <tr>
    <td>5869207</td>
    <td>My first CSS</td>
    <td>$49</td>
  </tr>
</table>

</body>
</html>

 

以上是关于table 设置每列的颜色的主要内容,如果未能解决你的问题,请参考以下文章

html 如何在css 里设置table 的个个列的固定宽度

android中gridView怎么在代码里动态设置每一列的宽度??

列的值颜色根据条件变化

C# TableLayoutPanel 要设置行列,然后把每行每列的大小设置成一样的,该怎么弄?

如何遍历一个DataTable中的每行每列,并且为每行每列的最后一列赋值

CSS样式我要把所有table里面的td列的字颜色改成黑色,这代码用CSS怎么写?