更改绝对位置后,徽标无法点击

时间:2016-01-15 16:15:24

标签: css

<div id="header-logo-image">
    <a href="http://example.com/" rel="home">
        <img src="http://example.com/wp-content/uploads/2016/01/head-logo.png />
    </a>
</div>
#header-logo-image {
    position: absolute;
    top: 0;
    left: 0;
    float: none;
    text-align: center;
    margin-bottom: 10px;
    padding-right: 0;
}
#header-logo-image img {
    width: 60%;
    float: left;
}

移动我的徽标后,我的主页链接似乎消失了。当我将鼠标悬停在<a>部分上时,它会显示0 x 0的尺寸。

使img更小或甚至使其成为绝对位置会导致重置href链接。

由于图像是动态尺寸,60%我不能在一个部分中指定尺寸

1 个答案:

答案 0 :(得分:1)

更改您的代码行:

<img src="http://example.com/wp-content/uploads/2016/01/head-logo.png" /></a></div>