JSFiddle - React, Tailwind, and code Playground
by josekerekes
HTML
<div class="target">
<p>
hello
</p>
<div>
hi<br />hello
</div>
</div>
CSS
* {
padding:0;
margin:0
}
.target {
border:1px solid red;
}
.target p, .target div {
float:left;
height:1%;
width:50%;
background:yellow
}