--- order: 8 version: 4.24.0 title: zh-CN: 紧凑布局组合 en-US: Compact Mode for form component --- ## zh-CN 使用 Space.Compact 让表单组件之间紧凑连接且合并边框。 ## en-US Compact Mode for form component. ```tsx import { CopyOutlined } from '@ant-design/icons'; import { AutoComplete, Button, Cascader, DatePicker, Input, InputNumber, Select, Space, TimePicker, Tooltip, TreeSelect, } from 'antd'; import React from 'react'; const { Option } = Select; const { TreeNode } = TreeSelect; const App: React.FC = () => (









{}} > leaf3} />
); export default App; ``` ```css .site-space-compact-wrapper .site-input-split { background-color: #fff; } .site-space-compact-wrapper .site-input-right:not(.ant-input-rtl) { border-left-width: 0; } .site-space-compact-wrapper .site-input-right:not(.ant-input-rtl):hover, .site-space-compact-wrapper .site-input-right:not(.ant-input-rtl):focus { border-left-width: 1px; } .site-space-compact-wrapper .site-input-right.ant-input-rtl { border-right-width: 0; } .site-space-compact-wrapper .site-input-right.ant-input-rtl:hover, .site-space-compact-wrapper .site-input-right.ant-input-rtl:focus { border-right-width: 1px; } ```