Div jump after it slide down

I am creating a new page using HTMl, and I want, when the user clicks on one of my links, one from bottom to bottom. The problem is that when I use this code on my page, it silde down to the left of my heading, and then it jumps under my link. I save the code in jSfiddle:

http://jsfiddle.net/GMSvk/1/ in jSfiddleit jumps up after sliding down .please help me solve this problem.

thank

+5
source share
4 answers

Add clear:bothto#Specifications

http://jsfiddle.net/GMSvk/3/

+4
source

I just used the tag <br />and it worked. :)

  </div>
</div>
<br />
  <div id="Specifications">
     wq  we  q
   </div>
0
source

overflow:hidden .topLeftBand, .

.topLeftBand {
    overflow:hidden;    
}
0

, , - http://jsfiddle.net/GMSvk/4/

fixed jump problem, align problem. Please answer me if you have any doubts.

0
source

All Articles