语法如下:
border-top-width: thin | medium | thick | length | initial | inherit;
- thin: 细边框。
- medium: 中等边框。
- thick: 粗边框。
- length: 指定一个固定的长度值,例如像素(px)、厘米(cm)等。
- initial: 将属性重置为其默认值。
- inherit: 继承父元素的值。
例如:
div {
border-top-width: 2px; /* 使用固定的像素值 */
}
这将使 div 元素的上边框宽度为2像素。你也可以使用 thin、medium、thick 或其他长度单位,具体取决于你的设计需求。
转载请注明出处:http://www.zyzy.cn/article/detail/4149/CSS