Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想通过一个 DOM 元素旁边的 CSS 使屏幕变暗,它是子元素
我怎么做?
编辑:我想做一些类似于 chrome 的开发工具“检查元素”用户界面的事情
div在整个视口之上创建一个图层。给它一些透明度或简单的纯色背景色。使用 CSS 提升您想要位于该层之上的元素z-index。
div
z-index
正如@jfriend00 指出的那样,您首先需要将position元素更改为absoluteor relative。left然后,您必须使用和top(例如)再次定位元素。
position
absolute
relative
left
top