我以这种方式应用了背景图像
HTML
<div id="background">
<img src="stock.png" class="stretch" alt="image" />
</div>
CSS
#background {
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
z-index: 0;
}
.stretch {
width:100%;
height:100%;
}
我想让图像的一部分区域可点击,以便它将我链接到下一页,有什么简单的方法吗?