Draw line after a title with CSS [duplicate]

2020-05-09 18:50发布

How can I draw a line like after title text like this :

"TITLE ________"

In CSS?
The "_" should complete the rest of the div and fill the remaining space.

3条回答
ゆ 、 Hurt°
2楼-- · 2020-05-09 18:57

Based on this answer :

h1{
  overflow:hidden;
}
h1:after{
  content:'';
  display:inline-block;
  width:100%; height:100%;
  margin-right:-100%;
  border-bottom:1px solid #000;
}
<h1>Title</h1>
<h1>Longer Title</h1>

查看更多
等我变得足够好
3楼-- · 2020-05-09 19:10
h1:after {
    content: "__________________";
}

Further explanation and examples: :after pseudo class

查看更多
够拽才男人
4楼-- · 2020-05-09 19:12

h1 {
  position: relative;
}

h1:after {
  content: "";
  position: absolute;
  border-bottom: 1px solid red;
  width: 100%;
  bottom: 0;
}
<h1>Title Here</h1>

查看更多
登录 后发表回答