mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
37 lines
658 B
Markdown
37 lines
658 B
Markdown
---
|
|
order: 23
|
|
title:
|
|
zh-CN: 无边框
|
|
en-US: Bordered-less
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
无边框样式。
|
|
|
|
## en-US
|
|
|
|
Bordered-less style component.
|
|
|
|
```tsx
|
|
import { Select } from 'antd';
|
|
import React from 'react';
|
|
|
|
const { Option } = Select;
|
|
|
|
const App: React.FC = () => (
|
|
<>
|
|
<Select defaultValue="lucy" style={{ width: 120 }} bordered={false}>
|
|
<Option value="jack">Jack</Option>
|
|
<Option value="lucy">Lucy</Option>
|
|
<Option value="Yiminghe">yiminghe</Option>
|
|
</Select>
|
|
<Select defaultValue="lucy" style={{ width: 120 }} disabled bordered={false}>
|
|
<Option value="lucy">Lucy</Option>
|
|
</Select>
|
|
</>
|
|
);
|
|
|
|
export default App;
|
|
```
|