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

如何將標題文本(「某些標題」)的顏色格式化爲紅色?如何更改html頁面中的標題顏色?

+0

退房[此帖在主題](http://stackoverflow.com/questions/8969927/changing-the-tooltip-color-for-a-hyperlink-using-html-and-css)。 –

+0

你也可以看到這一個http://stackoverflow.com/questions/2011142/how-to-change-the-style-of-title-attribute-inside-the-anchor-tag –

回答

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 
} 
+2

這是很好的,但不要'回答這個問題。這裏發生了什麼? –

相關問題