mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
f850993fda
* Add Button[ghost] property, close #4625 * Add danger button close #1308 * update API doc about ghost and danger property
27 lines
606 B
Markdown
27 lines
606 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 common used in colored background.
|
|
|
|
````__react
|
|
import { Button } from 'antd';
|
|
|
|
ReactDOM.render(
|
|
<div style={{ background: 'rgb(190, 200, 200)', padding: '26px 16px 16px' }}>
|
|
<Button type="primary" ghost>Primary Ghost</Button>
|
|
<Button ghost>Default Ghost</Button>
|
|
<Button type="dashed" ghost>Dashed Ghost</Button>
|
|
</div>
|
|
, mountNode);
|
|
````
|