mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 19:19:26 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
735 B
735 B
order | title | ||||
---|---|---|---|---|---|
8 |
|
zh-CN
幽灵按钮将按钮的内容反色,背景变为透明,常用在有色背景上。
en-US
ghost
property will make button's background transparent, it is commonly used in colored background.
import { Button } from 'antd';
export default () => (
<div className="site-button-ghost-wrapper">
<Button type="primary" ghost>
Primary
</Button>
<Button ghost>Default</Button>
<Button type="dashed" ghost>
Dashed
</Button>
<Button type="primary" danger ghost>
Danger
</Button>
</div>
);
.site-button-ghost-wrapper {
padding: 26px 16px 16px;
background: rgb(190, 200, 200);
}