flower-mp/pages/index/edit.wxss
2025-10-10 16:28:27 +08:00

32 lines
569 B
Plaintext

/* pages/index/edit.wxss */
page {
background-color: #F6F6F6;
}
.container {
position: relative;
width: 150rpx;
height: 150rpx;
padding: 0;
flex-shrink: 0;
overflow: hidden; /* 防止内容溢出 */
}
.bg {
width: 100%;
height: 100%;
background-color: rebeccapurple;
border-radius: 16rpx;
z-index: 1;
display: block; /* 必须加,否则 image 不会撑满父容器 */
}
.tips {
position: absolute;
width: 100%;
height: 100%;
z-index: 3;
display: block; /* 必须加,否则 image 不会撑满父容器 */
font-size: 28rpx;
}