관리 메뉴

I LOVE EJ

table에 마우스 오버시 색바꾸기 본문

Web publishing/JavaScript

table에 마우스 오버시 색바꾸기

BeOne 2007. 10. 15. 14:32
<html>
<head>
<title>..</title>
</head>
<body>
<table width=100 height=100  >
<tr bgcolor="#FFFFFF" onMouseOver="this.style.backgroundColor='#EEF1F6'"
onMouseOut="this.style.backgroundColor='#FFFFFF'"
>
<td>스타일이 적용됩니다. </td>
</tr>
</table>
</body>
</html>