1<hr align="center" width="700px" style= "border:1 dotted (这个表示虚线) #666666(颜色)" />
别的属性:
none:无样式;dotted:点线;dashed:虚线;solid:实线;
double:双线;groove:槽线;ridge:脊线;inset:内凹;outset:外凸。
html中hr的虚线样式可用过CSS样式来控制,具体代码如下:例如红色的虚线,代码可这样写:行内样式 <hr style="border:1px dotted red"><hr>标签本身属性只有align、noshade、size、width;并不包含线的样式,要想展示为虚线,只能通过css实现;
例如:
<hr style= "border:1px dashed #000" />
注:dashed就表示虚线;其它选择还有none:无样式;dotted:点线;solid:实线;double:双线;groove:槽线;ridge:脊线;inset:内凹;outset:外凸。