「CSS」表のtdセルのcssを適用するサンプル
構文
td bgcolor="色" align="位置" class="クラス名"
使用例
<style> .tablehead{font-size: 20px; color: red} </style> <table width="200" cellspacing="1" cellpadding="2" bgcolor="#798EA6"> <caption>情報一覧</caption> <tr> <td bgcolor="yellow" align="center" class="tablehead">111</td> <td bgcolor="#C8E3FF" align="right" class="tablehead">222</td> <td bgcolor="#C8E3FF" align="right" class="tablehead">333</td> </tr> </table>