2020-02-03 20:13:14 +08:00
|
|
|
# 绝对定位模式
|
2020-03-08 00:06:05 +08:00
|
|
|
所有布局组件可以使用绝对定位。如果你期望内容在固定的区域内滚动,可以使用 `absolute` 模式。
|
2020-01-02 23:21:10 +08:00
|
|
|
|
2020-03-08 00:06:05 +08:00
|
|
|
<n-alert title="注意" type="warning">如果你在边栏上设定了 `position='absolute'`,那么为了旁边的 `n-layout` 和 `n-layout-content` 正常显示,他们也要被设定为 `position='absolute'`</n-alert>
|
2020-01-02 23:21:10 +08:00
|
|
|
```html
|
|
|
|
<div style="width: 100%; height: 240px; position: relative">
|
2020-03-08 00:06:05 +08:00
|
|
|
<n-layout position="absolute">
|
2020-01-02 23:21:10 +08:00
|
|
|
<n-layout-header style="height: 64px;">
|
2020-02-10 22:52:06 +08:00
|
|
|
酷的页头
|
2020-01-02 23:21:10 +08:00
|
|
|
</n-layout-header>
|
2020-03-08 00:06:05 +08:00
|
|
|
<n-layout position="absolute" style="top: 64px; bottom: 64px;">
|
|
|
|
<n-layout-sider position="absolute">
|
2020-02-10 22:52:06 +08:00
|
|
|
酷的边栏
|
2020-01-02 23:21:10 +08:00
|
|
|
</n-layout-sider>
|
2020-03-08 00:06:05 +08:00
|
|
|
<n-layout position="absolute" style="overflow: auto;">
|
2020-02-10 22:52:06 +08:00
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
|
|
|
<n-h1>长</n-h1><n-h1>长</n-h1><n-h1>长</n-h1>
|
2020-01-02 23:21:10 +08:00
|
|
|
</n-layout>
|
|
|
|
</n-layout>
|
2020-03-08 00:06:05 +08:00
|
|
|
<n-layout-footer position="absolute" style="height: 64px">
|
2020-02-10 22:52:06 +08:00
|
|
|
酷的页脚
|
2020-01-02 23:21:10 +08:00
|
|
|
</n-layout-footer>
|
|
|
|
</n-layout>
|
|
|
|
</div>
|
|
|
|
```
|