--- order: 3 title: zh-CN: 箭头指向 en-US: Arrow pointing at the center --- ## zh-CN 设置 `arrow` 为 `{ pointAtCenter: true }` 后,箭头将指向目标元素的中心。 ## en-US By specifying `arrow` prop with `{ pointAtCenter: true }`, the arrow will point to the center of the target element. ```tsx import { Button, Dropdown, Menu } from 'antd'; import React from 'react'; const menu = ( 1st menu item ), }, { key: '2', label: ( 2nd menu item ), }, { key: '3', label: ( 3rd menu item ), }, ]} /> ); const App: React.FC = () => ( <>
); export default App; ``` ```css #components-dropdown-demo-arrow-center .ant-btn { margin-right: 8px; margin-bottom: 8px; } .ant-row-rtl #components-dropdown-demo-arrow-center .ant-btn { margin-right: 0; margin-bottom: 8px; margin-left: 8px; } ```