--- order: 1 title: zh-CN: 无边框 en-US: No border --- ## zh-CN 在灰色背景上使用无边框的卡片。 ## en-US A borderless card on a gray background. ```tsx import { Card } from 'antd'; import React from 'react'; const App: React.FC = () => (

Card content

Card content

Card content

); export default App; ``` ```css .site-card-border-less-wrapper { padding: 30px; background: #ececec; } ```