How can I change the title color in an html page?

筅森魡賤 提交于 2021-02-19 06:15:09

问题


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

How can i format the title text ("some title") color to red?


回答1:


You should consider putting style information into a CSS file and linking to it your html head with:

<link rel="stylesheet" type="text/css" href="YourCSSFile.css" />

Then your css file could contain something like:

td{
   font-size: 18px;
   font-weight:normal;
   color:#f7f7f7; //this is a hex value representing a light grey
}


来源:https://stackoverflow.com/questions/10496633/how-can-i-change-the-title-color-in-an-html-page

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!