【发布时间】:2021-08-30 12:18:12
【问题描述】:
深色模式图标显示在图像预览的前面。如何隐藏它? 示例测试页:https://www.aluth.com/2021/05/apple-airtag-how-it-works-features-and.html
【问题讨论】:
标签: templates themes customization blogger
深色模式图标显示在图像预览的前面。如何隐藏它? 示例测试页:https://www.aluth.com/2021/05/apple-airtag-how-it-works-features-and.html
【问题讨论】:
标签: templates themes customization blogger
图标出现在预览的前面,因为它有z-index: 999;。
设置预览框的z-index,使其大于999
.CSS_LIGHTBOX {
z-index: 9999;
}
您可以阅读有关z-index 属性的更多信息
【讨论】: