CSS - <a href=""> not clickable</a>

时间:2013-06-11 17:43:55

标签: css html href

http://prntscr.com/19fg8x

所以我有两个div,一个有:

.holder { display: table; 
position: fixed;
z-index: 1000;
height: 100%; 
width: 100%; 
text-align: center;
}

其他背后我有

<div>
    <a href="hello.php">Hello hum</a>
</div>

但是不可点击,我只能在IE上点击它。好吧如果我删除高度:100%,它会变得可点击,但我需要它高度100%..

任何解决方案?

5 个答案:

答案 0 :(得分:1)

这是正确的:

<div>
    <a href="hello.php">Hello hum</a>
</div>

答案 1 :(得分:0)

您的开场代码未关闭!

像这样关闭它:

<a href="hello.php">Hello hum</a>

“/”很重要!

答案 2 :(得分:0)

<a href="hello.php">Hello hum<a>----<--here is error
properly close your <a></a>

答案 3 :(得分:0)

您尚未将.holder课程设置为div。

将您的标记更改为:

 <div class="holder">
  <a href="hello.php">Hello hum</a>
 </div>

FIDDLE

答案 4 :(得分:0)

使用

<a href="#somthing"></a>

a{
 position:absolute;
 top:0;
 left:0;
 z-index:1;
 display:block;
 width:100%;
 height:100%;
}