mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-27 04:36:19 +08:00
dda45e4796
* feat: support narrow theme mode * chore: rename narrow to compact * chore: height part * chore: preview compact mode * chore: to make site corrected * chore: preview site * docs: 📖 document compact theme usage * docs: tweak theme doc * docs: 📖 Add description about double css bundle size * chore: preview * chore: for preview * chore: adjust pagination * chore: compact mode done! * chore: remove useless todo * chore: fix review bug * chore: fix review bug * chore: fix card margin * chore: fix review bug * chore: fix review bug * chore: improve i18n and transition * Update site/theme/static/common.less Co-Authored-By: 偏右 <afc163@gmail.com> * chore: fix button size and description padding * chore: update snapshots * chore: add compact css bundlesize limit * chore: compact dist support Co-authored-by: afc163 <afc163@gmail.com>
39 lines
549 B
Markdown
Executable File
39 lines
549 B
Markdown
Executable File
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基本
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
最简单的用法,浮层的大小由内容区域决定。
|
|
|
|
## en-US
|
|
|
|
The most basic example. The size of the floating layer depends on the contents region.
|
|
|
|
```jsx
|
|
import { Popover, Button } from 'antd';
|
|
|
|
const content = (
|
|
<div>
|
|
<p>Content</p>
|
|
<p>Content</p>
|
|
</div>
|
|
);
|
|
|
|
ReactDOM.render(
|
|
<Popover content={content} title="Title">
|
|
<Button type="primary">Hover me</Button>
|
|
</Popover>,
|
|
mountNode,
|
|
);
|
|
```
|
|
|
|
<style>
|
|
.ant-popover-content p {
|
|
margin: 0;
|
|
}
|
|
</style>
|