mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-04 08:30:46 +08:00
17 lines
256 B
Markdown
17 lines
256 B
Markdown
---
|
|
order: 2
|
|
title: 下方固定
|
|
---
|
|
|
|
固定在屏幕下方
|
|
|
|
````jsx
|
|
import { Affix, Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Affix offsetBottom={20}>
|
|
<Button type="primary">固定在距离底部 20px 的位置</Button>
|
|
</Affix>
|
|
, mountNode);
|
|
````
|