JSFiddle - React, Tailwind, and code Playground

by darcyclarke

HTML

<hr>

CSS

body {
 padding: 20px;
}
hr {
 border: none;
 height: 1px;
 background: #ccc;
 text-align: center;    
}

hr:after {
  content: 'Section';
  display: inline-block;
  position: relative;
  top: -10px;
  font-size: 20px;
  padding: 0 10px;
  background: #fff;
}