📅  最后修改于: 2023-12-03 15:30:09.270000             🧑  作者: Mango
CSS的border-block-start-width属性被用于设置元素边框的宽度,特别是在块级元素的“起始边”(在LTR语言中是左边界,在RTL语言中是右边界)上的宽度。
border-block-start-width: thin | medium | thick | length | initial | inherit;
border-block-start-width: 2px;
上述代码将元素的“起始边”的边框宽度设置为2像素。
border: 1px solid black;
border-block-start-width: 2px;
上述代码将元素的边框宽度设置为1像素,并将“起始边”的边框宽度设置为2像素。
border-left: 2px solid black;
border-block-start-width: 1px;
上述代码将元素的左边框宽度设置为2像素,并将“起始边”的边框宽度设置为1像素。注意,这里只为左边框指定了样式,而未指定其他边,其他边的样式将保持默认状态。