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

相关文章: