JSFiddle - React, Tailwind, and code Playground
by kmendes
HTML
<html>
<head>
<style type="text/css">
#left {
}
#center {
}
#right {
}
.col {
width: 200px;
text-align: center;
}
</style>
</head>
<body>
<div>
<div id="left" class="col">left</div>
<div id="center" class="col">center</div>
<div id="right" class="col">right</div>
</div>
</body>
</html>
CSS
.col{float:left;}
#right{margin-left:-400px;}
#center{margin-left:200px;}