JSFiddle - React, Tailwind, and code Playground

by cahnory

HTML

<h1 class="demo1">Titre h1</h1>

CSS

.demo1 {
  overflow:hidden;
  text-align: center;
  
  margin: 0 auto;
  width: 50%;
}
.demo1:before,
.demo1:after {
  content: '––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––';
  display: inline-block;
  position: relative;
  width: 0;
}
.demo1:before {
  direction: rtl;
  left: -.8em;
}
.demo1:after {
  left: .8em;
}