2012-05-08 5 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

당신은 당신의 HTML 헤드를 CSS 파일에 스타일 정보를 넣고 여기에 연결 고려해야합니다

<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

이것은 좋은 일이지만, 질문에 대답하지 마라. 여기서 뭐하는거야? –

관련 문제