JSFiddle - React, Tailwind, and code Playground

by JakobJingleheimer

HTML

<div>This is a paragraph<br />
    that is forced into two lines.</div>
<div>This is another paragraph<br />
    that is forced into two lines.</div>

CSS

* {
    margin:0;
    padding:0;
}

html,body {
    font: 12px/18px Georgia;
    width:100%;
}

div {
    display: inline;
    float: left;
    padding: 0.5em 5%;
    position: relative;
    width: 90%;
}