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
Post a Comment