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

docs: 更新uni-app-x position文档

上级 b6dac5a3
......@@ -15,6 +15,27 @@
#### App平台差异
absolute元素相对父组件确定位置,fixed元素位于页面顶层。
#### fixed定位@fixed
position: fixed定位时,web端为相对于整个浏览器页面进行定位,app端为相对于页面(除导航栏、tabbar)定位。可以使用css变量使两端表现一致
```css
.fixed {
position: fixed;
width: 100px;
height: 100px;
background-color: #FF0000;
left: 10px;
/* #ifdef WEB */
top: calc(--window-top + 10px);
/* #endif */
/* #ifdef APP */
top: 10px; /* App端暂不支持calc */
/* #endif */
}
```
<!-- CSSJSON.position.reference -->
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册