увеличение жирности ссылки
Код:
<style type="text/css"> a:hover{font-weight: bolder; TEXT-DECORATION: none; } a{color:#цвет ссылки; text-decoration:underline; } </style>
оригинальные тускнеющие ссылки
Код:
<style type="text/css"> a:hover{ FILTER: Alpha(Opacity=70, FinishOpacity=6, Style=2); COLOR: #цвет ссылки; HEIGHT: 10px; TEXT-DECORATION: none;} a{color:#цвет ссылки; text-decoration:none; } </style>
подчеркивание ссылки
Код:
<style type="text/css"> a:hover{color:red; text-decoration: underline; } a{color:#FF00CC; text-decoration:none; } </style>
пунктирная рамочка вокруг ссылки
Код:
<style type="text/css"> a:hover{BORDER-RIGHT: red 1px dashed; BORDER-TOP: red 1px dashed; RIGHT: 0px; BORDER-LEFT: red 1px dashed; COLOR: red; BOTTOM: 0px; BORDER-BOTTOM: red 1px dashed; POSITION: relative; TEXT-DECORATION: none; } a{color:#0000ff; text-decoration:none; } </style>
исчезающее подчеркивание
Код:
<style type="text/css"> a:hover{color:#ff0000; text-decoration: none; } a{color:#0000ff; text-decoration:underline; } </style>
заливка ссылок при наведении мышки
Код:
<style type="text/css"> a:hover{color:#FF0000; BORDER-TOP: #000000 1px solid; BACKGROUND: #0000ff ; BORDER-BOTTOM: #FFFFFF 1px solid; text-decoration: none; } a{color:#00FF00; text-decoration:none; } </style>