Fixing Footer to specific position.

Vishalneeraj-24503
Posted by Vishalneeraj-24503 under CSS 3 category on | Points: 40 | Views : 1214
Write below CSS code:-
#footer 
{
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
background:#999;
}


Here,#footer is our Div tag ID.
Above CSS class will fix Footer Div to specific position.

Comments or Responses

Login to post response