首页 > 其他分享 >边框宽度

边框宽度

时间:2023-03-03 11:24:05浏览次数:35  
标签:medium 2px 边框 width 宽度 border

边框宽度

您可以通过 border-width 属性为边框指定宽度。

为边框指定宽度有两种方法:可以指定长度值,比如 2px 或 0.1em(单位为 px, pt, cm, em 等),或者使用 3 个关键字之一,它们分别是 thick 、medium(默认值) 和 thin。

注意:CSS 没有定义 3 个关键字的具体宽度,所以一个用户可能把 thick 、medium 和 thin 分别设置为等于 5px、3px 和 2px,而另一个用户则分别设置为 3px、2px 和 1px。

实例

p.one { border-style:solid; border-width:5px; } p.two { border-style:solid; border-width:medium; } https://www.81rz.com/zjxt191/

标签:medium,2px,边框,width,宽度,border
From: https://www.cnblogs.com/5-si6/p/17174905.html

相关文章