mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-29 03:48:26 +08:00
25 lines
306 B
Markdown
25 lines
306 B
Markdown
---
|
|
order: 2
|
|
title:
|
|
zh-CN: 下方固定
|
|
en-US: Bottom
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
固定在屏幕下方。
|
|
|
|
## en-US
|
|
|
|
Affix to bottom.
|
|
|
|
````jsx
|
|
import { Affix, Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<Affix offsetBottom={20}>
|
|
<Button type="primary">20px to affix bottom</Button>
|
|
</Affix>
|
|
, mountNode);
|
|
````
|