Styleهای متداول لینک
در مثال بالا رنگ لینک در حالت های مختلف تغییر داد می شود.
اجازه بدهید Styleهای متداول دیگر برای لینک را ذکر کنیم:
Styleهای متداول لینک - آذین بندی متن (Decoration)
خصوصیت text-decoration اکثراً جهت حذف کردن underline از لینک ها استفاده می شود:
مثال (Styleهای متداول لینک در CSS)
a:link {text-decoration:none;}
a:visited {text-decoration:none;}
a:hover {text-decoration:underline;}
a:active {text-decoration:underline;}
خودتان امتحان کنید »a:visited {text-decoration:none;}
a:hover {text-decoration:underline;}
a:active {text-decoration:underline;}