ok, how do I make a dotted line appear under a link when you move on it?
isn't it suppose to be:
?
isn't it suppose to be:
Code:
a:hover{text-decoration: dotted;}
a:hover{text-decoration: dotted;}

a:hover{
border-bottom-style:dotted;
border-bottom-width: 1px;
}

Comment