我的href标签在我的网站上无法点击,我听到它因为我有z-index,但我无法删除z-index标签,因为它在我的网站上至关重要。这是我的代码:
HTML
<div id="NewsPosts">
<p><h5>Posted by Sir Biscuit on November 28, 2014</h5><a href="../assets/posts/1.html">Website Developed by Sir Biscuit</a></p>
</div>
CSS
#NewsPosts {
position: relative;
margin: 0 auto;
background-color: white;
text-align: center;
top: -80px;
font-family: "arial";
font-size: 18px;
box-shadow: 0px 3px 3px #888888;
overflow: hidden;
z-index: -1
}
答案 0 :(得分:1)
不要在该标签上设置负z-index,而是在需要在其前面的元素上设置更高的z-index。
答案 1 :(得分:0)
尝试更改
的z-index#NewsPosts a{
z-index:999;
}