Jquery Resize Causes Jump
I have created a small set of buttons in a
- element using jQuery. I am now trying to make that
- resizable by adding a handle to the top of it. The problem is wh
Solution 1:
problem is u have fixed bottom property to 0 so when u resize it or change position gives problem bcoz it changes wrt to bottom: 0
.app_container_T {
position:fixed;
bottom:0; ////// remove this then change top no problem
left:0;
z-index: 998;
background-color:grey;
margin: 0;
padding: 0;
}
Post a Comment for "Jquery Resize Causes Jump"