对不同章节对文本段落进行分割
对行内文字/链接进行分割
2
<Divider style={{ width:'100%' }}/>
使用 variant 可以设置分割线的显示形式,默认为 solid (实线),dotted (点线),dashed (虚线)
当分割线为垂直方向时,使用 margins 设置分割线左右的外边距
当分割线为水平方向时,使用 margins 设置分割线上下左右的外边距
2
<Divider style={{ width:'100%'}}/>
3
<Divider variant="dotted" margins={20} style={{ width:'100%' }} />
4
<Divider variant="dashed" margins={20} style={{ width:'100%' }} />
direction 设置分割线的方向,vertical 为垂直方向,horizontal 为水平方向
3
<Divider direction="vertical" margins="sm" />
5
<Divider direction="vertical" margins="sm" />
label 设置分割线的标签名称,labelPosition 设置标签的位置,默认为左侧。
2
<Divider style={{ width:'100%' }}/>
3
<Divider variant="dotted" margins={20} label="label name" style={{ width:'100%' }}/>
4
<Divider margins={20} label="label name" labelPosition="right" style={{ width:'100%' }}/>