mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
32 lines
652 B
Markdown
32 lines
652 B
Markdown
---
|
|
order: 9999
|
|
title:
|
|
zh-CN: 样式自定义
|
|
en-US: Style Customization
|
|
debug: true
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
测试一些 `style` 修改样式的行为。
|
|
|
|
## en-US
|
|
|
|
Use `style` to change default style.
|
|
|
|
```jsx
|
|
import { Divider } from 'antd';
|
|
|
|
export default () => (
|
|
<>
|
|
<Divider style={{ borderWidth: 2, borderColor: '#7cb305' }} />
|
|
<Divider style={{ borderColor: '#7cb305' }} dashed />
|
|
<Divider style={{ borderColor: '#7cb305' }} dashed>
|
|
Text
|
|
</Divider>
|
|
<Divider type="vertical" style={{ height: 60, borderColor: '#7cb305' }} />
|
|
<Divider type="vertical" style={{ height: 60, borderColor: '#7cb305' }} dashed />
|
|
</>
|
|
);
|
|
```
|