我需要创建一个透明的图像,通过其他功能(如导航栏)忽略所有Web内容。
<div id="birds">
<img src="birds.png" class="cover">
</div>
#birds{
position: relative;
}
#birds img.cover{
position: absolute;
float:right;
margin-left: 4.8%;
}
答案 0 :(得分:1)
我不确定你追求的是什么,但如果我要猜测,那就是pointer-events: none;
不幸的是,目前这在Internet Explorer或Opera中不起作用。