<table>
<tr>
<td class="bgimg" valign="middle" width="10%" title="some title" nowrap>
<img src="images/SomeLogo.gif"/>
</td>
</tr>
</table>
如何将标题文字(“某些标题”)颜色格式化为红色?
答案 0 :(得分:1)
您应该考虑将样式信息放入CSS文件并使用以下链接链接到您的html头:
<link rel="stylesheet" type="text/css" href="YourCSSFile.css" />
然后你的css文件可能包含:
td{
font-size: 18px;
font-weight:normal;
color:#f7f7f7; //this is a hex value representing a light grey
}