我想在这里使用字体颜色。但似乎不知道在哪里放代码:
<html>
<tr>
<td style="padding-left: 5px;"> 11.15 - 12.00 </td>
<td style="padding-left: 5px; padding-bottom:3px;"> <b> TEST </b><br/></td>
</tr>
</html>
答案 0 :(得分:19)
要设置字体颜色,只需在样式中设置颜色属性:
<table>
<tr>
<td style="padding-left: 5px;
padding-bottom:3px;
color:#FF0000;
font-weight:bold">TEST</td>
</tr>
</table>
这会将单词TEST呈现为红色。
答案 1 :(得分:4)
<html>
<tr>
<td style="padding-left: 5px; color: blue;"> 11.15 - 12.00 </td>
<td style="padding-left: 5px; padding-bottom:3px; color: green;"> <b> TEST </b><br/></td>
</tr>
</html>
答案 2 :(得分:4)
使用Css样式表:
<style>
.a td{
padding-left: 5px;
padding-bottom:3px;
color: blue;
}
</style>
<table class="a">
<tr>
<td >TEST</td>
</tr>
</table>
答案 3 :(得分:2)
我没有在您的代码中找到正文标签也不是表格标签..这里是正确的代码......根据您的要求
<html>
<body>
<table>
<tr>
<td style="padding-left: 5px;color:red"> 11.15 - 12.00 </td>
<td style="padding-left: 5px; padding-bottom:3px;"><b> TEST </b><br/></td>
</tr>
</table>
</body>
</html>