There seems to be a mysterious line appearing under the text inside a specific div.
This issue is only noticeable on Firefox and IE browsers.
Take a look at these screenshots; I am using the entire div as a link:
Here is the structure of the divs and text:
In the CSS:
.whiteTextBold {
color:#fff;
font-family: 'Open Sans', sans-serif;
font-weight: 700;
font-style: none;
font-size: 15px;
text-decoration: none;
}
.moreInfo {
background:rgba(255,255,255,0.0);
border:1px solid;
border-color:#fff;
width:170px;
height:35px;
text-decoration: none;
}
In the file:
<a target="_blank" href="#">
<div class="moreInfo">
<table width="100%" height="100%">
<tr><td align="center"><font class="whiteTextBold">More info</font></td></tr>
</table>
</div></a>
Any suggestions on how to prevent this line from appearing?