flower-mp/pages/garden/edit.wxss
2025-11-18 17:06:26 +08:00

32 lines
535 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%;
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;
}