我需要在母版页文件上设置一个链接。所以我为表格列(<td>
)设置了一个背景图像,并分别将一些字体作为“home”。现在我设置“onclick”事件并将其重定向到页面<td>
。但它在浏览器上的图像底部提供了一些空间。所以链接(手形符号)从下面的空格开始到按钮图像。我检查了所有边距设置、填充等。但它不起作用。所以现在我决定为背景图片设置一个href。是否有可能或任何其他方式来纠正这个问题?我在互联网上找到了一些帮助。但我不知道如何使用此代码。我在这篇文章中附上了帮助代码。
我的代码:
<tr style="height:44px;">
<td id="Homebutton" runat="server" style="height: 44px; width: 101px; cursor: pointer;"
class="menubuttonhome" align="center" onclick="navigate(id)" onmouseover="this.className='menubuttonhomefocus'"
onmouseout="this.className= 'menubuttonhome'">
Home
</td>
</tr>
css 文件
.menubuttonhomefocus
{
background-image: url('Images/homebuttonfocus.png');
background-repeat: no-repeat;
vertical-align: top;
color: White;
padding-top: 11px;
font-family: Arial;
font-size: 10pt;
font-weight: 500;
}
来自互联网的帮助代码
a.particular-link {display: block; /* or inline-block; I think IE would respect it since a link is an inline-element */
background: #fff url(path/to/image.gif) top left no-repeat;
text-align: center;
line-height: 50px; }