我有一个单行和 3 个单元格的表格。我正在寻找更改将有 3 条条纹的整行的颜色。我不知道该怎么做。
<table>
<tr>
<td>first cell</td>
<td>second cell</td>
<td>third cell</td>
</tr>
</table>
如果它是一个 div,我会在其中放置 3 个 div,我将能够执行以下操作:
<style>
#someDiv{
border: 1px;
// background-color: grey;
width:100%;
height:102px;
}
#divthree{
background-color:green;
height:34px;
}
#divone{
background-color:#FF6600;
height:34px;
}
#divtwo{
background-color:white;
height:34px;
}
</style>
<div id="someDiv">
<div id="divone"></div>
<div id="divtwo"></div>
<div id="divthree"></div>
</div>
这是它的工作原理:http: //jsfiddle.net/H4Hr7/