Зачеркивание ссылки
Код:
<style type="text/css"> a:hover{color:red; text-decoration: line-through; } a{color:#FF00CC; 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{color:red; text-decoration: underline overline; } 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:#FF00CC; text-decoration:none; } </style>
Увеличение жирности в ссылке
Код:
<style type="text/css"> a:hover{font-weight: bolder; TEXT-DECORATION: none; } a{color:#FF00CC; text-decoration:underline; } </style>
Исчезающее подчеркивание
Код:
<style type="text/css"> a:hover{color:red; text-decoration: none; } a{color:#FF00CC; text-decoration:underline; } </style>
заливка ссылки при наведении мышкой
Код:
<style type="text/css"> a:hover{color:red; BORDER-TOP: #FFCCFF 1px solid; BACKGROUND: #FFCCFF ; BORDER-BOTTOM: #FFCCFF 1px solid; text-decoration: none; } a{color:#FF00CC; text-decoration:none; } </style>
верхнее подчёркивание ссылки
Код:
<style type="text/css"> a:hover{color:red; text-decoration: overline; } a{color:#FF00CC; text-decoration:none; } </style>
Вставлять в HTML-верх
Отредактировано Мэл (2009-07-20 15:00:13)