JSFiddle - React, Tailwind, and code Playground

by Lalji Tadhani

HTML

<h2>
<span>Title</span>
</h2>

CSS

h2{
  
}
h2 span{
  position:relative;
  display:inline-block;
  
}
h2 span:before{
  /*content:"";
  border-top:2px solid red;
  position:absolute;
  left:0;
  top:50%;
  width:25px;
  height:1px;
  */
   content: "";
  display: inline-block;
  position: relative;
  top: -.35em;
  margin-right: .25em;
  width: 25px;
  height: 2px;
  background: #ccc;
  vertical-align: middle;
}