我有一张必须设置高度和宽度以及边框的表格。我试过这个CSS
table,td,tr#cer_actuals {
padding-left: 5px;
font-family: Verdana;
font-size: 9pt;
font-weight: normal;
height: 0px;
border: 1px solid grey;
}
这会影响项目中的所有表,所以我尝试了这个,
#cer_actuals {
padding-left: 5px;
font-family: Verdana;
font-size: 9pt;
font-weight: normal;
height: 0px;
border: 1px solid grey;
}
和 HTML
<table width="100%" id="cer_actuals" >
<tr>
<td align="left" width="10%" style="background-color:#f1e0ff;"></td>
<td align="center" width="20%" style="background-color:#f1e0ff;">
Mth
</td>
<td align="center" width="30%" style="background-color:#f1e0ff;">
Actuals
</td>
<td align="center" width="40%" style="background-color:#f1e0ff;">
EOY Accruals
</td>
</tr>
<tr>
<td align="left" width="10%" style="background-color:#f1e0ff;"></td>
<td align="center" width="20%" style="background-color:#f1e0ff;">C/F</td>
<td align="center" width="30%" style="background-color:white;">
<input type="text" id="CIMtrek_CI_Act_CF" name="CIMtrek_CI_Act_CF">
<xsl:attribute name="value"><xsl:value-of
select="//Record/CIMtrek_CI_Act_CF/text()" /></xsl:attribute>
</input>
</td>
<td align="center" width="40%" style="border-width:1px 0px 0px 1px;">
</td>
</tr>
但这对桌子没有影响。
我必须为表格中的 td 设置高度。
这该怎么做。
请帮忙。