Reputation: 1695
I'd like to create a border around links that forms a square around the entire link on :hover
. How do I achieve this effect?
Upvotes: 1
Views: 57767
Reputation: 9174
HTML
<a href="#">one</a><br/>
<a href="#">two</a><br/>
<a href="#">three</a><br/>
<a href="#">four</a><br/>
CSS
a:hover{
border:1px solid red;
}
Upvotes: 15