You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/antdv-demo/docs/divider/demo/customize-style.md

21 lines
491 B

<cn>
#### 样式自定义
测试一些 `style` 修改样式的行为。
</cn>
<us>
#### Style Customization
Use `style` to change default style.
</us>
```vue
<template>
<div>
<a-divider style="height: 2px; background-color: #7cb305" />
<a-divider style="border-color: #7cb305" dashed />
<a-divider type="vertical" style="height: 60px; background-color: #7cb305" />
<a-divider type="vertical" style="height: 60px; border-color: #7cb305" dashed />
</div>
</template>
```