mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-02 07:39:36 +08:00
30 lines
587 B
Markdown
30 lines
587 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';
|
||
|
|
||
|
ReactDOM.render(
|
||
|
<div>
|
||
|
<Divider style={{ height: 2, backgroundColor: '#7cb305' }} />
|
||
|
<Divider style={{ borderColor: '#7cb305' }} dashed />
|
||
|
<Divider type="vertical" style={{ height: 60, backgroundColor: '#7cb305' }} />
|
||
|
<Divider type="vertical" style={{ height: 60, borderColor: '#7cb305' }} dashed />
|
||
|
</div>,
|
||
|
mountNode,
|
||
|
);
|
||
|
```
|