微信小程序:添加一条下划线,两条下划线

1、一条下划线

在wxss里添加

/**下方一条下划线**/
.OneUnderLine{
  text-decoration-line: underline;
}

效果:

 

 

 2、两条下划线

在wxss里添加

/**下方两条下划线**/
.TwoUnderLine {
  text-decoration-line: underline;
  text-decoration-style: double;
}

效果:

 

 

更多效果如果wxss搜不到的话,可以尝试搜css样式

css文档参考:https://developer.mozilla.org/zh-CN/docs/Web/CSS/text-decoration-line

posted on 2021-10-29 19:40  Jason_c  阅读(3221)  评论(0编辑  收藏  举报