Draw line after a title with CSS [duplicate]

一曲冷凌霜 提交于 2019-12-02 13:10:55
web-tiki

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>

h1 {
  position: relative;
}

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

Further explanation and examples: :after pseudo class

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!