提交 63a5a806 编写于 作者: 雪洛's avatar 雪洛

fix(mp): 修复小程序端z-index示例显示错位的Bug

上级 fc3f623e
......@@ -75,27 +75,32 @@
.default {
background-color: red;
z-index: 10;
/* #ifndef MP */
top: var(--window-top);
/* #endif */
/* #ifdef MP */
top: 0px;
/* #endif */
}
.specified {
background-color: green;
z-index: 5;
left: 87px;
/* #ifdef APP */
/* #ifdef APP || MP */
top: 87px;
/* #endif */
/* #ifdef H5 */
/* #ifdef WEB */
top: calc(var(--window-top) + 87px);
/* #endif */
}
.floor {
background-color: chocolate;
/* #ifdef APP */
/* #ifdef APP || MP */
top: 250px;
/* #endif */
/* #ifdef H5 */
/* #ifdef WEB */
top: calc(var(--window-top) + 250px);
/* #endif */
left: 175px;
......@@ -103,10 +108,10 @@
}
.popup {
/* #ifdef APP */
/* #ifdef APP || MP */
top: 320px;
/* #endif */
/* #ifdef H5 */
/* #ifdef WEB */
top: calc(var(--window-top) + 320px);
/* #endif */
left: 87px;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册