JSFiddle - React, Tailwind, and code Playground

HTML

<html>

<head>
        <title>This is My Page's Title</title>
</head>
<body>
        <div id="leftrightparent">
                <div id="left">
                        left
                </div>
                <div id="right">
                        right
                </div>
        </div>
</body>

 </html>

CSS

#left {
  background-color:#ff0000;
}
#right {
  width:180px;
  float: right;
  background-color:#00FF00;
}
#leftrightparent {
}