Sun
Sun

Reputation: 59

Yellow image border in Chrome after click

I am creating an 'add-this' sharing tool for my site. After clicking on the email icon, there is a yellow border around the email icon (only in chrome).

I would like to remove that yellow border. How can I?

Site: here

Upvotes: 1

Views: 1347

Answers (2)

Kevin Lynch
Kevin Lynch

Reputation: 24723

You can specify border-style:none;

img {
    border-style:none;
}

Upvotes: 0

Chris
Chris

Reputation: 6062

You need to add the CSS outline:none; to your link.

Upvotes: 2

Related Questions