JSFiddle - React, Tailwind, and code Playground

HTML

<div id="container1"></div>
<div id="container2"></div>
<div id="container3"></div>
<div id="container4"></div>

CSS

html, body {
	
	margin: 0;
	
	/*overflow: hidden;*/
}

#container1 {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 100%;
	background-color: blue;
}

#container2 {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background-color: red;
}

#container3 {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 200%;
	background-color: green;
}

#container4 {
	position: absolute;
	height: 100%;
	width: 100%;
	top: 100%;
	left: 100%;
	background-color: orange;
}