JSFiddle - React, Tailwind, and code Playground

HTML

<div>
    <h3><span class="indent">  
        <span class="heading">pppppMyyyy<br>JJJMmM</span>    
    </span></h3>
</div>
<!--[if IE]><style>
h3 .subhead {
    margin-left: -14px
}
</style><![endif]-->

CSS

h3 {
    margin:0;
    font-size: 42px;
}
h3 .heading {
    background-color: red;
    color: #000;
}
h3 .subhead {
    background-color: #00a3d0;
    color: #000;
}

div { 
    line-height: 1.1; 
    padding: 1px 0;
    border-left: 30px solid red; 
    display: inline-block; 
}
h3 { 
    background-color: red; 
    color: #fff; 
    display: inline; 
    margin: 0; 
    padding: 0
} 
h3 .indent { 
    position: relative; 
    left: -15px;
}
h3 .subhead {
    padding: 0 15px;
    float: left;
    margin: 3px 0 0 -29px;
    outline: 1px solid #00a3d0;
    line-height: 1.15
}