LG - Thankyou CSS

by Ben Clayton

HTML

<div class="screen">



<div class="top">
TOP
</div>

<div class="bottom">
BOTTOM

<h2>
THANK YOU
</h2>
</div>

</div>

CSS

.screen {
	display:block;
	width:300px;
	height:500px;
	

}

.top {
	position:fixed;
	top:0;
	bottom:50%;
	left:0;
	right:0;
	background-color:#fef8fe;
	
}
.bottom {
	position:fixed;
	top:50%;
	bottom:0%;
	left:0;
	right:0;
}
h2 {
	position:absolute;
	top:100px;
	text-align:center;
	width:100%;
}