Basic jQuery slideUp and slideDown driving me mad!

后端 未结 10 831
情深已故
情深已故 2020-12-09 19:06

my jQuery skills are pretty good normally but this is driving me mad!

It\'s a fairly simple accordian I\'ve coded up from scratch. Using jQuery 1.3.2 so there should

10条回答
  •  攒了一身酷
    2020-12-09 20:05

    For me, the problem was the margin (or padding) on the div to show/hide with slide, but I needed to give margin (or padding) to that div. I solved with this trick:

      .slide-div:before{
        content: " ";
        display: block;
        margin-top: 15px;
      }
    

提交回复
热议问题