3

我有以下 HTML 表格。我需要为每一列赋予背景颜色(第一列 = 红色,第二列 = 黄色,第三列 = 蓝色)。如何使用 CSS 做到这一点?

注意:这需要在 IE6 及更高版本中工作。

http://jsfiddle.net/Lijo/kw4yU/

  <table id = "myTable">
    <thead>
        <tr>
            <th>
                 Name
            </th>
            <th>
                Address
            </th>
            <th>
                Age
            </th>
        </tr>
    </thead>
    <tr>
        <td>
            Lijo
        </td>
        <td>
            India
        </td>
        <td>
            27
        </td>
    </tr>
</table>

编辑:

我通过将 js 代码放入 document.ready 中使其工作。感谢@Jose Rui Santos http://jsfiddle.net/Lijo/kw4yU/11/

另一个解决方案是http://jsfiddle.net/Lijo/kw4yU/12/

另一种方法:列宽设置 - HTML 表格

4

9 回答 9

9

使用+选择器

​#myTable tr td {            /* makes all columns red */
    background-color: red;
}
#myTable tr td + td {       /* makes 2nd and 3rd columns yellow */
    background-color: yellow;
}
#myTable tr td + td + td {  /* makes 3rd column blue */
    background-color: blue;
}

​<a href="http://jsfiddle.net/kw4yU/1/">演示在这里

编辑

上面的 CSS 只改变数据单元格的背景颜色。如果您还想包含表头,只需执行以下操作:

#myTable tr th,
#myTable tr td {
    background-color: red;
}

#myTable tr th + th,
#myTable tr td + td {
    background-color: yellow;
}

#myTable tr th + th + th,
#myTable tr td + td + td {
    background-color: blue;
}

编辑2

一种javascript 解决方案是,使用 jQuery

$("#myTable th, #myTable td").each(function (i) {
    $(this).css('background-color', ['red', 'yellow', 'blue'][i % 3]);
});

​</p>

于 2012-05-24T11:48:24.540 回答
5

你可以这样做:

td:nth-child(1){
    background-color: #f00;
}
td:nth-child(2){
    background-color: #ff0;
}
td:nth-child(3){
    background-color: #00f;
}

但是,这是使用 CSS3,因此如果您想支持旧版浏览器,则需要使用 JavaScript。

于 2012-05-24T11:48:21.417 回答
3

您可以coltable标签之后添加

<table id = "myTable">
<col style="background-color: red;" />
<col style="background-color: yellow;" />
<col style="background-color: blue;" />
<thead>
    <tr>
        <th>
             Name
        </th>
        <th>
            Address
        </th>
        <th>
            Age
        </th>
    </tr>
    </thead>
    <tr>
        <td>
            Lijo
        </td>
        <td>
            India
        </td>
        <td>
            27
        </td>
    </tr>
</table>
于 2012-05-24T11:52:20.173 回答
3

使用 COL 标签。

<style>
table {
    background-color: black;
}
.first {
    background-color: orange;
}
.second {
    background-color: green;
}
.third {
    background-color: pink;
}
</style>

  <table id = "myTable">
  <col class="first" /><col class="second" /><col class="third" />
    <thead>
        <tr>
            <th>
                 Name
            </th>
            <th>
                Address
            </th>
    <th>
                Age
            </th>
        </tr>
    </thead>
    <tr>
        <td>
            Lijo
        </td>
        <td>
            India
        </td>
    <td>
            27
        </td>
    </tr>
</table>
于 2012-05-24T11:53:19.787 回答
1
th,td{background:yellow}
th:first-child,td:first-child{background:red}
th:last-child,td:last-child{background:blue}​

像这样http://jsfiddle.net/thebabydino/kw4yU/3/

对于较旧的 IE 版本,请考虑使用兄弟选择器:

th,td{background:red}
th+th,td+td{background:yellow}
th+th+th,td+td+td{background:blue}​

... 或向 HTML 中的每一列添加一个类,然后对列类进行不同的样式设置。

于 2012-05-24T11:49:35.393 回答
1

您可以为此使用 colgroup 标签

<table id="myTable">
  <colgroup span="2" style="background-color:#FF0000;"></colgroup>
  <colgroup style="background-color:#0000FF;"></colgroup>
  <thead>
        <tr>
            <th>
                 Name
            </th>
            <th>
                Address
            </th>
    <th>
                Age
            </th>
        </tr>
    </thead>
    <tr>
        <td>
            Lijo
        </td>
        <td>
            India
        </td>
    <td>
            27
        </td>
    </tr>

</table> 

如果你不想要内联 CSS,那么你可以给 colgroups 一个 id 或 class 并在你的样式表中引用它。

于 2012-05-24T11:49:47.230 回答
0

给 td 添加一个类。

HTML: <td class="first">data</td>

CSS:

td.first {
    background-color: #00FF00;
}
于 2012-05-24T11:48:20.070 回答
0

表格不是按列构建的,而是按行构建的。因此,为了进行基于列的样式,每个单元格元素都必须应用一个单独的通用样式。

小提琴

风格

.col1 { background-color: #ffddbb; }
.col2 { background-color: #ddffbb; }
.col3 { background-color: #bbddff; }

HTML

<table id = "myTable">
    <thead>
        <tr>
            <th class="col1">
                 Name
            </th>
            <th class="col2">
                Address
            </th>
    <th class="col3">
                Age
            </th>
        </tr>
    </thead>
    <tr>
        <td class="col1">
            Lijo
        </td>
        <td class="col2">
            India
        </td>
    <td class="col3">
            27
        </td>
    </tr>
</table>
于 2012-05-24T11:49:21.147 回答
0

如果您不想更改 HTML 代码,可以尝试:

table tr td {
    background-color: orange;            
}

​table tr td+td {
    background-color: yellow;            
}

table tr td+td+td {
    background-color: green;            
}
于 2012-05-24T11:54:06.963 回答