mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-01-12 12:25:16 +08:00
487001d697
.demo.md for component demo .demo-entry.md for demo entry .md for common docs
1.1 KiB
1.1 KiB
绝对定位模式
所有布局组件可以使用绝对定位。如果你期望内容在固定的区域内滚动,可以使用 absolute
模式。
如果你在边栏上设定了 position='absolute'
,那么为了旁边的 n-layout
和 n-layout-content
正常显示,他们也要被设定为 position='absolute'
<div style="width: 100%; height: 240px; position: relative">
<n-layout position="absolute">
<n-layout-header style="height: 64px;">
酷的页头
</n-layout-header>
<n-layout position="absolute" style="top: 64px; bottom: 64px;">
<n-layout-sider position="absolute">
酷的边栏
</n-layout-sider>
<n-layout position="absolute" style="overflow: auto;">
<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>
</n-layout>
</n-layout>
<n-layout-footer position="absolute" style="height: 64px">
酷的页脚
</n-layout-footer>
</n-layout>
</div>