--- order: 999 title: zh-CN: 自定义 label & wrapper 样式 en-US: Customize label & wrapper style debug: true --- ## zh-CN 自定义 label & wrapper 样式 ## en-US Customize label & wrapper style ```tsx import { Descriptions, Divider, Switch, Radio } from 'antd'; const labelStyle: React.CSSProperties = { background: 'red' }; const contentStyle: React.CSSProperties = { background: 'green' }; type LayoutType = 'horizontal' | 'vertical' | undefined; const Demo = () => { const [border, setBorder] = React.useState(true); const [layout, setLayout] = React.useState('horizontal' as LayoutType); return ( <> setBorder(e)} /> setLayout(e.target.value)} value={layout}> horizontal vertical Cloud Database Prepaid YES Cloud Database Prepaid YES ); }; export default Demo; ```