JSFiddle - React, Tailwind, and code Playground

by ozzon91

HTML

<div class="pro_wrapper">
	<!-- // -->
	<div class="pro_col">1</div>

	<div class="pro_col2">2</div>
	<!--  //-->
</div>

CSS

.pro_wrapper {
	width: 100%;
	position: relative;
	min-height: 800px;
}

.pro_col {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: #333;
	width: 31%;
}

.pro_col2 {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background: #555;
	width: 69%;
}