naive-ui/demo/documentation/components/affix/enUS/position.md

41 lines
1.0 KiB
Markdown
Raw Normal View History

2019-12-06 12:22:10 +08:00
# Position
2020-01-29 20:29:25 +08:00
Affix can be `absolute` or `fixed` positioned. You may need some css tricks to make it works as following. By default position is set to `fixed`, because in most cases scrolled element is `#document`.
2019-12-06 12:22:10 +08:00
```html
<div class="absolute-anchor-container">
<div class="container">
<div class="padding"></div>
<div class="content">
2020-01-29 20:29:25 +08:00
<div style="display: inline-block; width: 50%;">
2020-02-04 12:24:56 +08:00
<n-affix :offset-top="50" position="absolute"><n-tag>Affix Trigger Top 50px</n-tag></n-affix>
2020-01-29 20:29:25 +08:00
</div>
<div style="display: inline-block; width: 50%;">
2020-02-04 12:24:56 +08:00
<n-affix :offset-bottom="60" position="absolute"><n-tag>Affix Trigger Bottom 60px</n-tag></n-affix>
2020-01-29 20:29:25 +08:00
</div>
2019-12-06 12:22:10 +08:00
</div>
</div>
</div>
```
```css
.absolute-anchor-container {
width: 100%;
height: 200px;
position: relative;
}
.container {
height: 200px;
background-color: rgba(128, 128, 128, .3);
border-radius: 6px;
overflow: auto;
}
.padding {
height: 150px;
width: 100%;
background-color: rgba(128, 128, 128, .15);
}
.content {
height: 600px;
}
```