jquery - Keep div in place, but relative -


as can see here: want create page songs of show, when jquery changes height of 1 of divs (on hover), other div changes position (it centers vertically). normally, use

position:relative; top:0px; 

but in case want put more divs under (rows of 5 columns). have go down bit if 1 of divs above expands.

in order fix issue, add following css:

.track{vertical-align:top;} 

Comments