0

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%..

有什么解决办法吗?

4

5 回答 5

1

正确的:

<div>
    <a href="hello.php">Hello hum</a>
</div>
于 2013-06-11T17:45:19.937 回答
0

您的开始标签未关闭!

像这样关闭它:

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

“/”很重要!

于 2013-06-11T17:46:20.613 回答
0
<a href="hello.php">Hello hum<a>----<--here is error
properly close your <a></a>
于 2013-06-11T17:48:20.143 回答
0

你还没有将你的.holder类设置为你的 div。

将您的标记更改为:

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

小提琴

于 2013-06-11T17:57:50.163 回答
0

利用

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

a{
 position:absolute;
 top:0;
 left:0;
 z-index:1;
 display:block;
 width:100%;
 height:100%;
}
于 2013-06-11T21:38:01.780 回答