JSFiddle - React, Tailwind, and code Playground

by charlescarver

HTML

<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1"/>


<p>
    <span>This is a long paragraph that continues
    
        onto the next line by a single</span> line break. This line however continues on even farther and farther and farther

    
    Paragraph break!
</p>

CSS

span{
    background-color:red;
    display:inline;
    white-space:pre;
}

p{
    white-space:pre;
    font-size:17px;
}