Reputation: 14823
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
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
Reputation: 4723
css:
a {text-decoration: none;}
this should work, it worked with me.
Upvotes: 5