supersize
supersize

Reputation: 14823

Remove blue dots on anchor tag

I have a few anchors in my body:

<a href="link1.html"></a>
<a href="link2.html"></a>
<a href="link3.html"><img src="img1.png" /></a>

The ones with an image in it have a weird blue dot on the bottom-right handed side.

I tried a { border: none; } for css but they are still there!

Any help much appreciated. Thanks.

Upvotes: 1

Views: 3541

Answers (2)

Geremy Good
Geremy Good

Reputation: 31

It looks like your anchor tag is underlining which it does by default. Try setting the text-decoration of the anchors to none.

This should fix it:

a{ text-decoration: none; }

Upvotes: 1

Carl0s1z
Carl0s1z

Reputation: 4723

css:

a {text-decoration: none;}

this should work, it worked with me.

Upvotes: 5

Related Questions