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 }