2013年4月14日日曜日

マウスオーバーで文字・背景の色を変える/手のマークを表示

文字を赤に 背景を赤に 手のマークを表示



<table border="1" bordercolor="#FF7F50" cellspacing="0" style="width: 100%px;">
<tbody>
<tr>

<td align="center" onmouseout="this.style.color=''" onmouseover="this.style.color='red'" style="cursor: pointer;" width="25%">文字を赤に</td>
         
 <td align="center" onmouseout="this.style.backgroundColor=''" onmouseover="this.style.backgroundColor='red'" style="cursor: pointer;" width="25%">背景を赤に</td>

<td align="center" onclick="window.open('http://39houjicha3-doodlebook.blogspot.jp/','_blank')" style="cursor: pointer;" width="25%">手のマークを表示</td>
</tr>

</tbody></table>