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

306 B

order title
2
zh-CN en-US
下方固定 Bottom

zh-CN

固定在屏幕下方。

en-US

Affix to bottom.

import { Affix, Button } from 'antd';

ReactDOM.render(
  <Affix offsetBottom={20}>
    <Button type="primary">20px to affix bottom</Button>
  </Affix>
, mountNode);