JSFiddle - React, Tailwind, and code Playground

by loganatos

HTML

<body>

<div id="wrap">
<div id="blue"></div>
<div id="red"></div>
</div>

</body>

CSS

#wrap {
	border: 4px solid black;
	width: 100%;
    /*display:inline-block;*/

}

#blue {
	width: 300px;
	height: 300px;
	background-color: blue;
	float: left;
}

#red {
	width: 300px;
	height: 300px;
	background-color: red;
	float: left;

}