Online Forum To Support Coders With Technical Assistance - Read Write Execute

Stick footer at bottom of webpage

Ankit Agrawal
Ankit Agrawal
Published on November 9, 2015 · 1 min read
<style>
body
{
	padding:0px;
	margin:0px;
	height:100%;
}
.yourSiteWrapper
{
	position:relative;
	min-height:100%;
}
.yourSiteWrapper .yourSiteFooter
{
	height:60px;
	line-height:60px;
	text-align:center;
	background:#000;
	color:#fff;
	position:absolute;
	bottom:0px;
	width:100%;
}
</style>
<div class="yourSiteWrapper">
	<div class="yourSiteFooter">This is Footer</div>
</div>
Was this article helpful?
Ankit Agrawal

Ankit Agrawal

Author & Senior Engineer at CodeExecute

Writing practical engineering guides, debugging real-world bottlenecks, and creating free tools for developer productivity.

← Previous Article what is material design ? Next Article → how to add border in the table row?