You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
743 B
35 lines
743 B
4 years ago
|
---
|
||
|
order: 98
|
||
|
title:
|
||
|
zh-CN: Borderless Debug
|
||
|
en-US: Borderless Debug
|
||
|
debug: true
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
Buggy!
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
Buggy!
|
||
|
|
||
|
```jsx
|
||
|
import { Input } from 'antd';
|
||
|
|
||
|
const { TextArea } = Input;
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<div style={{ backgroundColor: 'rgba(0, 0, 128, .2)' }}>
|
||
|
<Input placeholder="Unbordered" bordered={false} />
|
||
|
<Input placeholder="Unbordered" bordered={false} size="large" />
|
||
|
<TextArea placeholder="Unbordered" bordered={false} />
|
||
|
<TextArea placeholder="Unbordered" bordered={false} allowClear />
|
||
|
<Input placeholder="Unbordered" bordered={false} allowClear />
|
||
|
<Input prefix="¥" suffix="RMB" bordered={false} />
|
||
|
<Input prefix="¥" suffix="RMB" disabled bordered={false} />
|
||
|
</div>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|