在HTML中,要设置水平规则的厚度,可以使用CSS样式。具体操作如下:
<hr class="custom-hr">
.custom-hr {
border: none;
border-top: 1px solid #ccc;
height: 1px;
margin: 10px 0;
}
在这个例子中,我们将水平规则的厚度设置为1px,颜色为灰色,并将上下边距设置为10px。
如果您想要在HTML文件中直接设置样式,可以使用内联样式:
<hr style="border: none; border-top: 1px solid #ccc; height: 1px; margin: 10px 0;">
这样,您就可以在HTML中设置水平规则的厚度了。
领取专属 10元无门槛券
手把手带您无忧上云