我的问题是我有两张图片在点击时加载另一页。但是第一个按钮可以单击它的左侧。我知道为什么。这是html
#gb1 {
position: absolute;
top: 350px;
left: -100px;
}
#gb2 {
position: absolute;
top: 350px;
right: -100px;
}

<div id="gb1" align="center">
<a href="_1"><img src="gb1.png" height="10%" width="20%"></a>
</div>
<div id="gb2" align="center">
<a href="_2.html"><img src="gb2.png" height="10%" width="20%"></a>
</div>
&#13;
答案 0 :(得分:0)
在div标签内部,更改为当前只有_1,更改类似的内容:
<div id="gb1" align="center">
<a href="_1.html"><img src="gb1.png" height="10%" width="20%"></a>
</div>