1
I am styling a link that has a border and I would like that when the mouse cursor was on top of it, only the text would be clearer, keeping the border in the same original color.
Using opacity
, I’m not getting to delete the edge also getting lighter:
a#link:hover {
color: #000;
opacity: .6;
border: solid 1px #000;
}
Is there any way to apply opacity only in the text and delete the edges?