tip1
สร้างสีสันให้กับ link
- เมื่อชี้แล้วเปลี่ยนสี ให้เอาคำสั่งนี้ใส่ไว้ใน tag <Head> ครับ
<HEAD>
<STYLE type="text/css"><!--
A:link {color:"สีของ link";}
A:visited {color:"สีของ link ที่เคยไปแล้ว";}
A:hover {color:"สีของ link ที่ต้องการให้เปลี่ยนเมื่อชี้";}
-->
</STYLE>
</HEAD>
- เมื่อชี้แล้วเปลี่ยนขนาด
Make this text bigger.
ใช้ tag นี้ ครับ
<span onmouseover = "this.style.fontSize = 'larger'" onmouseout = "this.style.fontSize =''" style="color:red">Make this text bigger.</span>