AMC
AMC

Reputation: 1695

creating square border around links

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?

link-border

Upvotes: 1

Views: 57767

Answers (1)

Clyde Lobo
Clyde Lobo

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;  
}

Fiddle

Upvotes: 15

Related Questions