0

我有标签,里面有图片。创意 ID,当您单击图像时,它会将您链接到标签包含的链接

<a href="gallery/">
    <div class="gal_thumb">
        <div class="img_thumb">
            <img src="image/small.jpg" alt="link_image"/>
        </div>

        <div class="gal_title">To gallery</div>
    </div>
</a>

在所有浏览器上都可以正常工作,但在 IE7 上却不行 IE7:当我将图像放在左下角时,它会在链接的左下角显示链接,当我点击它时,机器人在我点击外部或标题之前没有响应。

更新:这是我的 CSS

.gal_thumb {
    float: left;
    width: 156px;
}

.img_thumb {
    float: left;
    height: 122px;
    margin-bottom: 5px;
    margin-left: 9px;
    position: relative;
    width: 147px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    line-height: 120px;
    text-align: center;
}

.img_thumb:hover{
    background: #6E6E6E;
}

.gal_title {
    margin-left: 9px;
    text-align: center;
    width: 147px;
    padding-bottom: 10px;
}
4

1 回答 1

0

你最好使用这种模式:

<a href="gallery/">
   <img width="20" height="20" border="1" src="image/small.jpg" alt="link_image"/>
   <div class="gal_title">To gallery</div>
</a>

然后使用display:block,并为-tagfloat:left定义一个宽度。A

于 2012-05-17T14:52:38.930 回答