1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| .sticky-li {
| position: sticky;
| /* top: 0; */
| bottom: 0;
| background-color: #fff;
| z-index: 999;
| }
| .custom-pill {
| position: relative; /* 设置相对定位 */
| }
|
| .custom-pill::before {
| content: ""; /* 添加伪元素内容 */
| position: absolute; /* 设置绝对定位,覆盖在 pill 元素之上 */
| top: 0;
| left: 0;
| width: 100%;
| height: 100%;
| background-color: rgba(0, 0, 0, 0.2); /* 设置遮罩层颜色,这里使用淡灰色带透明度 */
| pointer-events: none; /* 确保遮罩层不会阻止用户操作 */
| }/* sample css file */
|
|