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.
我正在使用 jQuery colorbox 插件,它也会在我的页面上打开一个 div,并且背景像往常一样是深色的。但是,当用户进行某些操作时,我会在我的页面上显示通知,并且它会在黑色背景下显示。
我应该怎么做(使用 css)我的通知 div 不被颜色框覆盖?
您的通知 div 必须是 body 元素的直接子元素,并且它的 z-index 值需要比一个颜色框使用的更高。
我已将其添加到我的 css 中并且它有效:
z-index: 10000;