top of page
Search

Create Fixed Footer at bottom in CSS | sticky footer CodingTutorialS

Writer's picture: AchyuthAchyuth

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:



 
 
 

Comments


myCodingBootcamp

  • Facebook
  • Twitter
  • LinkedIn

©2023 by myCodingBootcamp

bottom of page