--- order: 10 title: zh-CN: 卡片式页签容器 en-US: Container of card type Tab --- ## zh-CN 用于容器顶部,需要一点额外的样式覆盖。 ## en-US Should be used at the top of container, needs to override styles. ````jsx import { Tabs } from 'antd'; const TabPane = Tabs.TabPane; ReactDOM.render(

Content of Tab Pane 1

Content of Tab Pane 1

Content of Tab Pane 1

Content of Tab Pane 2

Content of Tab Pane 2

Content of Tab Pane 2

Content of Tab Pane 3

Content of Tab Pane 3

Content of Tab Pane 3

, mountNode); ```` ````css .card-container > .ant-tabs-card > .ant-tabs-content { height: 120px; margin-top: -16px; } .card-container > .ant-tabs-card > .ant-tabs-content > .ant-tabs-tabpane { background: #fff; padding: 16px; } .card-container > .ant-tabs-card > .ant-tabs-bar { border-color: #fff; } .card-container > .ant-tabs-card > .ant-tabs-bar .ant-tabs-tab { border-color: transparent; background: transparent; } .card-container > .ant-tabs-card > .ant-tabs-bar .ant-tabs-tab-active { border-color: #fff; background: #fff; } ````