参数给 <text> 元素添加下划线样式,发现使用简写属性无法生效,而分开写普通属性能够生效。
无法生效:
<text style="text-decoration: underline 6rpx #000;">hello</text>
拆开写能够生效:
<text
style="
text-decoration-line: underline;
text-decoration-thickness: 6rpx;
text-decoration-color: #000;
"
>hello</text>
按line,color,style,thickness顺序写试下