mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
f937a7fffe
* feat: Input bordered prop * fix: snapshot * fix: borderless Input background-color -> transparent
21 lines
237 B
Markdown
21 lines
237 B
Markdown
---
|
|
order: 20
|
|
title:
|
|
zh-CN: 无边框
|
|
en-US: Borderless
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
没有边框。
|
|
|
|
## en-US
|
|
|
|
No border.
|
|
|
|
```jsx
|
|
import { Input } from 'antd';
|
|
|
|
ReactDOM.render(<Input placeholder="Borderless" bordered={false} />, mountNode);
|
|
```
|