jquery - How to set fixed position to DIV into the page -


i have css box-model this: enter image description here

using jquery (when button cliecked) resize main content div, footer doesn't maintain position @ bottom of screen:

enter image description here

i try set position: fixed footer div, doesn't scroll page.

i know if there way position footer regardless of content

use css achieve this

.my_footer {     position: fixed;     bottom: 0;     left: 0;     right: 0;     height: 100px; } 

Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -