我的图片链接超出了图片范围......?

时间:2015-05-04 04:30:05

标签: image hyperlink

"时间选择"这里的按钮有一个超出图像(http://www.ecoculturevillage.org/coolstuff/

的链接
.image-1 {
    width: 255px;
    height: 75px;
    display: block;
    background-image: url();
}

.image-1:hover {
    background-image: url();
}
<a href="http://www.urchinsky.com" target="_blank">
    <div class="image-1" ></div>
</a>
<div class="clearfloat"></div>

1 个答案:

答案 0 :(得分:0)

由于您已在链接中包含块级元素,因此这是一个解决方案。将display: block替换为display: table-cell

.image-1 {
  display: table-cell;
}