ant-design/components/tooltip/demo/arrow-point-at-center.md
xrkffgg 01b98e79d9
docs: optimize site of components 3 (#23779)
* docs: optimize site of components in rtl 3

* add
2020-04-30 21:04:19 +08:00

31 lines
659 B
Markdown

---
order: 2
title:
zh-CN: 箭头指向
en-US: Arrow pointing at the center
---
## zh-CN
设置了 `arrowPointAtCenter` 后,箭头将指向目标元素的中心。
## en-US
By specifying `arrowPointAtCenter` prop, the arrow will point to the center of the target element.
```jsx
import { Tooltip, Button } from 'antd';
ReactDOM.render(
<div>
<Tooltip placement="topLeft" title="Prompt Text">
<Button>Align edge / 边缘对齐</Button>
</Tooltip>
<Tooltip placement="topLeft" title="Prompt Text" arrowPointAtCenter>
<Button>Arrow points to center / 箭头指向中心</Button>
</Tooltip>
</div>,
mountNode,
);
```