JSFiddle - React, Tailwind, and code Playground

by iliketo

HTML

<body>
	    <div id="container">
	    	<div id="center"> <h1>center</h1> </div>
	        <div id="right"> <h1>right</h1> </div>
            </div>
	</body>
	
</html>

CSS

#center{
	background-color: green;
        float: left;
}

#right{
	background-color: red;
        float: right;
        width: 200px;
}