Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<table> <tr> <td class="bgimg" valign="middle" width="10%" title="some title" nowrap> <img src="images/SomeLogo.gif"/> </td> </tr> </table>
如何将标题文本(“某些标题”)颜色格式化为红色?
您应该考虑将样式信息放入 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 }