JSFiddle - React, Tailwind, and code Playground
by Blake Plumb
HTML
<div id="one"><p>this is the text for test paragraph one</p></div>
<div id="two"><p>this is the text for paragraph two</p>
<p>Here is some more text. blah blah blah run it to the end of the page does it fold nicely.</p>
</div>
<div id="three"><p>this is the text for paragraph three</p></div>
CSS
#one{
vertical-align: top;
display: inline-block;
width: 50px;
zoom: 1;
*display: inline;
margin-right: 10px;
}
#two{
vertical-align: top;
display: inline-block;
zoom: 1;
*display: inline;
}
#three{
vertical-align: top;
display: inline-block;
width: 50px;
zoom: 1;
*display: inline;
margin-left: 10px;
}