css - HTML image link has a small blue tic mark below it -


i have tag image inside of , reason tag looks extends below image , causing little blue tic mark on bottom right side. i've tried setting border none , few other css solutions nothing seems working. appreciate can give. here link test page. header_test.

there couple of options. first of which, reason why see border because a tag overflowing space between images... can eliminate spaces so:

<a href="http://hornethq.lynchburg.edu/"><img class="announcement" src="../resources/images/headers/20150723announcement.png"></a> <a href="http://hornethq.lynchburg.edu/"><img class="announcement" src="../resources/images/headers/20150723announcement.png"></a> <a href="http://hornethq.lynchburg.edu/"><img class="announcement" src="../resources/images/headers/20150723announcement.png"></a> 

alternatively, change css a tags to:

a { display: inline-block; } 

or:

a { text-decoration: none; } 

to remove underline.


Comments

Popular posts from this blog

javascript - Karma not able to start PhantomJS on Windows - Error: spawn UNKNOWN -

Nuget pack csproj using nuspec -

c# - Display ASPX Popup control in RowDeleteing Event (ASPX Gridview) -