JSFiddle - React, Tailwind, and code Playground

by Mahadevan Sivasubramanian

HTML

<div id="firstdiv">
			Testing 1
		</div>
		<div id="middlediv">
			<img src="image/testing.png"/>
		</div>
		<div id="lastdiv">
			Testing 2
		</div>

CSS

#firstdiv
		{	
			width:20%;
			position:absolute;
			border:1px solid DarkGrey;
			float:left;
		}
		#middlediv
		{
			width:60%;
			border:1px solid Blue;			
			margin-left:21%;
		}
		#lastdiv
		{
			width:18%;
			border:1px solid red;
			position:absolute;
			float:right;
		}