.calendar-mask { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); z-index: 3; }要使他不透明可以写什么样式
时间: 2024-03-25 10:36:33 浏览: 48
calendar-link::calendar:日历链接生成器,用于受欢迎的服务
可以将 `rgba(0, 0, 0, 0.5)` 中的最后一个参数 `0.5` 改为 `1`,表示完全不透明,即实心黑色背景。修改后的样式代码如下:
```
.calendar-mask {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 1); /* 不透明的实心黑色背景 */
z-index: 3;
}
```
阅读全文