作者:戴乐季206 | 来源:互联网 | 2020-11-27 05:28
css设置下划线为虚线的方法:可以利用text-decoration-style属性来进行设置,如【text-decoration-style:dotted;】。text-decoration-style属性用于规定线条如何显示。
css设置下划线为虚线的方法:可以利用text-decoration-style属性来进行设置,如【text-decoration-style: dotted;】。text-decoration-style属性用于规定线条如何显示。
给a标签添加虚线下划线
css如何设置下划线虚线
//css
a{
text-decoration-style: dotted;
}