-1

我需要制作一个透明的图像,通过所有网页内容被其他功能(如导航栏)忽略。

<div id="birds">
<img src="birds.png" class="cover">
</div>
#birds{
position: relative;
}


#birds img.cover{
position: absolute;
float:right;
margin-left: 4.8%;

}
4

1 回答 1

1

我不太确定你在追求什么,但如果我猜测一下,那就是pointer-events: none;

不幸的是,目前这在 Internet Explorer 或 Opera 中不起作用。

于 2012-10-17T22:19:03.210 回答