ant-design/components/divider/demo/customize-style.md
MadCcc 6776bb8916
docs: demo support react18 (#34843)
* 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
2022-04-03 23:27:45 +08:00

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 />
</>
);
```