JSFiddle - React, Tailwind, and code Playground

by kmouse

HTML

<div class="container" id="container">
<div class="absolute">
Hello.
</div>
</div>

CSS

.container{
	background: #ccc;
	overflow: hidden;
	position: relative;
	height: 200px;
	width: 200px;
	
}

.absolute {
	position: absolute;
	width: 60px;
	height: 50px;
	background: #fcc;
	left: 400px;
}

JavaScript

var el = document.getElementById("container");
debugger;