ant-design/components/affix/demo/bottom.md

25 lines
306 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title:
zh-CN: 下方固定
en-US: Bottom
2016-03-31 09:40:55 +08:00
---
2016-02-29 16:44:38 +08:00
## zh-CN
固定在屏幕下方。
## en-US
Affix to bottom.
2016-02-29 16:44:38 +08:00
````jsx
import { Affix, Button } from 'antd';
ReactDOM.render(
<Affix offsetBottom={20}>
<Button type="primary">20px to affix bottom</Button>
2016-02-29 16:44:38 +08:00
</Affix>
, mountNode);
````