JSFiddle - React, Tailwind, and code Playground

by benhowdle89

HTML

<h1 data-text="Header Title the splits to two seperate lines">Header Title the splits to two seperate lines</h1>
<p>The plans you refer to will soon be back in our hands. I'm surprised you had the courage to take the responsibility yourself. I don't know what you're talking about. I am a member of the Imperial Senate on a diplomatic mission to Alderaan-- What?! I don't know what you're talking about. I am a member of the Imperial Senate on a diplomatic mission to Alderaan-- I suggest you try it again, Luke. This time, let go your conscious self and act on instinct.</p>

CSS

body {
    font: 14px/20px Helvetica Neue, sans-serif;
    padding: 30px;
}
h1 {
    font-size: 2em;
    line-height: 1.2em;
    text-align: center;
    position: relative;
    padding: 0;
    margin-bottom: 1em;
    background: white;
    display:block;
}

h1:before {
    content: "";
    border-top: 1px dotted #000;
    position: absolute;
    top: 50%;
    left:-1%;
    width: 102%;
    height: 1px;
    z-index:-10;
}