CSS中設(shè)置貫穿線長(zhǎng)度使用text-decoration-thickness屬性。text-decoration-thickness屬性設(shè)置貫穿線的粗細(xì),可以指定像素或者百分比。
.example { text-decoration: line-through; text-decoration-color: red; text-decoration-thickness: 0.1em; /* 像素 */ }
在上面的例子中,我們?cè)O(shè)置了一個(gè)類名為example的元素,在該元素中,貫穿線為紅色,粗細(xì)為0.1em。也可以將粗細(xì)指定為百分比。
.example { text-decoration: line-through; text-decoration-color: blue; text-decoration-thickness: 50%; /* 百分比 */ }
在上面的例子中,我們?cè)O(shè)置了一個(gè)類名為example的元素,在該元素中,貫穿線為藍(lán)色,粗細(xì)為文字大小的一半。
請(qǐng)注意,text-decoration-thickness 屬性僅適用于實(shí)線和雙線貫穿線,虛線或點(diǎn)線貫穿線不受此屬性影響。