想改变下划线的颜色,貌似text-decoration无法做到。想用border-bottom,但是与文字之间得距离不能缩小,试着改过padding但是没有成功= =求教了多谢
1 回答
已采纳
习惯受伤
TA贡献885条经验 获得超1144个赞
用border-bottom可以实现啊:

代码:
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
.text {
border-bottom:1px dashed red;
}
</style>
</head>
<body>
<span class="text">我是文字</span>
</body>
</html>- 1 回答
- 1 关注
- 2620 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消
