top of page
Search
Writer's pictureAchyuth

Create Fixed Footer at bottom in CSS | sticky footer CodingTutorialS


HTML:



<div class="footer">
    @2021 codingtutorialss - Fixed footer at bottom
</div>


CSS:



.footer{
	height: 20px;
	background-color: #DDD;
	padding: 10px;
	bottom: 0px;
	right: 0px;
	position: absolute;
	width: 100%;
	box-shadow: 0px -3px 6px #AAA;
	text-align: right;
}



Demo:



5 views0 comments

コメント


bottom of page