ant-design/components/button/demo/ghost.md
2019-12-23 17:16:26 +08:00

870 B

order title
8
zh-CN en-US
幽灵按钮 Ghost Button

zh-CN

幽灵按钮将按钮的内容反色,背景变为透明,常用在有色背景上。

en-US

ghost property will make button's background transparent, it is commonly used in colored background.

import { Button } from 'antd';

ReactDOM.render(
  <div className="site-button-ghost-wrapper">
    <Button type="primary" ghost>
      Primary
    </Button>
    <Button ghost>Default</Button>
    <Button type="primary" danger ghost>
      danger
    </Button>
    <Button danger ghost>
      Danger Default
    </Button>
    <Button type="link" danger ghost>
      Danger Link
    </Button>
    <Button type="link" ghost>
      link
    </Button>
  </div>,
  mountNode,
);
.site-button-ghost-wrapper {
  background: rgb(190, 200, 200);
  padding: 26px 16px 16px;
}