CSS Dim 叠加:闪耀
我有一个暗淡的覆盖层,并且希望某些元素能够穿透。似乎更高的 z-index 还不够:我必须设置 position:relative/absolute
。有什么办法可以避免这种情况吗?请参阅我的基本示例:http://jsfiddle.net/hSYU2/。一旦您移除位置
,圆圈就会消失。
对机制的解释会很充分。
I have a dim overlay, and want certain elements to poke through. It seems a higher z-index is not enough: I must set position: relative/absolute
. Is there any way to avoid this? See my basic example here: http://jsfiddle.net/hSYU2/. As soon as you remove the position
, the circle disappears.
An explanation of the mechanics would be swell.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 CSS2 规范,
z-index
仅适用于定位元素(即:固定、绝对或相对),所以不,没有办法避免它。From CSS2 specification,
z-index
only applies to positioned elements (i.e: fixed, absolute or relative), so no, there is no way to avoid it.