mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 07:09:55 +08:00
c5bcf57537
* 🆕 Add text type Button `<Button type="text" />` close #15892 * Add test cases * missing type * missing type * fix missing type * Update components/button/index.zh-CN.md Co-Authored-By: zefeng <zefengbao@outlook.com> Co-authored-by: Amumu <yoyo837@hotmail.com> Co-authored-by: zefeng <zefengbao@outlook.com>
45 lines
792 B
Markdown
45 lines
792 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>
|
|
link
|
|
</Button>
|
|
<Button type="text" ghost>
|
|
Text Button
|
|
</Button>
|
|
<Button type="link" ghost>
|
|
link
|
|
</Button>
|
|
</div>,
|
|
mountNode,
|
|
);
|
|
```
|
|
|
|
```css
|
|
.site-button-ghost-wrapper {
|
|
background: rgb(190, 200, 200);
|
|
padding: 26px 16px 16px;
|
|
}
|
|
```
|