[html] 给一个元素加下划线的方法有哪些?


    使用 <u></u> 标签
    给元素添加 boder-bottom
    文字样式 text-decoration: underline;
    使用伪类或者子元素做绝对定位

.target {
  position: relative;
}
.underline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: black;
}

个人简介

我是歌谣,欢迎和大家一起交流前后端知识。放弃很容易,
但坚持一定很酷。欢迎大家一起讨论

主目录

与歌谣一起通关前端面试题