2
<table>
    <tr>
        <td class="bgimg" valign="middle" width="10%" title="some title" nowrap>
            <img src="images/SomeLogo.gif"/>
        </td>
    </tr>
</table>

如何将标题文本(“某些标题”)颜色格式化为红色?

4

1 回答 1

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
}
于 2012-05-08T10:30:40.947 回答