웹마스터 팁

//테이블을 이용해서 롤오버 테이블로 색깔바뀌는 메뉴를 고안해봤습니다...
플래시처럼 보일 때도 있길래 올립니다..//
<DIV>
<TABLE cellPadding="0" cellSpacing="0" width="150"> <!--테이블 너비-->
<TBODY>
<TR>
<TD onmouseout='this.style.backgroundColor="처음색"' onmouseover='this.style.backgroundColor="바뀔색"'>
<P> </P></TD></TR>
<TR>
<TD onmouseout='this.style.backgroundColor="처음색"' onmouseover='this.style.backgroundColor="바뀔색"'>
<P> </P></TD></TR>
<TR>
<TD onmouseout='this.style.backgroundColor="처음색"' onmouseover='this.style.backgroundColor="바뀔색"'>
<P> </P></TD></TR>
<TR>
<TD onmouseout='this.style.backgroundColor="처음색"' onmouseover='this.style.backgroundColor="바뀔색"'>
<P> </P></TD></TR>
</TBODY></TABLE></DIV>

//상당히 간단하죠..? 너무 쉬운듯한...-_-//