欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

設置貫穿線長度css

錢衛國2年前11瀏覽0評論

CSS中設置貫穿線長度使用text-decoration-thickness屬性。text-decoration-thickness屬性設置貫穿線的粗細,可以指定像素或者百分比。

.example {
text-decoration: line-through;
text-decoration-color: red;
text-decoration-thickness: 0.1em; /* 像素 */
}

在上面的例子中,我們設置了一個類名為example的元素,在該元素中,貫穿線為紅色,粗細為0.1em。也可以將粗細指定為百分比。

.example {
text-decoration: line-through;
text-decoration-color: blue;
text-decoration-thickness: 50%; /* 百分比 */
}

在上面的例子中,我們設置了一個類名為example的元素,在該元素中,貫穿線為藍色,粗細為文字大小的一半。

請注意,text-decoration-thickness 屬性僅適用于實線和雙線貫穿線,虛線或點線貫穿線不受此屬性影響。