--- order: 7 title: zh-CN: Flex 填充 en-US: Flex Stretch --- ## zh-CN Col 提供 `flex` 属性以支持填充。 ## en-US Col provides `flex` prop to support fill rest. ```tsx import { Col, Divider, Row } from 'antd'; import React from 'react'; const App: React.FC = () => ( <> Percentage columns 2 / 5 3 / 5 Fill rest 100px Fill Rest Raw flex style 1 1 200px 0 1 300px
none
auto with no-wrap
); export default App; ```