JSFiddle - React, Tailwind, and code Playground

by Cath_kb

HTML

<div>
	<div id="headler">
        <div class="text">CSS test Final!!!</div>
	</div>
</div>

CSS

body,td,th {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
}
body {
	background-color:#1d2d23;
	margin:0px;
	padding:0px;
}
#headler {
	width:600px;
	height:250px;
	margin: 0px auto;
	background-color:#a9c060;
    position: relative;
}
.text {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 1em;
    margin: auto;
    text-align: center;
}