mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
35f1b1b7fc
* fix: remove style of ghost link & ghost text button * feat: devWarning on link or text + ghost button * test: update snapshot * fix: fix devWarning valid arg * test: test warning * docs: update ghost button demo * test: change resetWarned position * chore
39 lines
675 B
Markdown
39 lines
675 B
Markdown
---
|
|
order: 8
|
|
title:
|
|
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.
|
|
|
|
```jsx
|
|
import { Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<div className="site-button-ghost-wrapper">
|
|
<Button type="primary" ghost>
|
|
Primary
|
|
</Button>
|
|
<Button ghost>Default</Button>
|
|
<Button type="dashed" ghost>
|
|
Dashed
|
|
</Button>
|
|
</div>,
|
|
mountNode,
|
|
);
|
|
```
|
|
|
|
```css
|
|
.site-button-ghost-wrapper {
|
|
background: rgb(190, 200, 200);
|
|
padding: 26px 16px 16px;
|
|
}
|
|
```
|