Spacer between panels in jQuery Accordion

元气小坏坏 提交于 2019-12-13 12:23:24

问题


I have a small requirement that has eluded me...

Using jQuery Accordion (version 1.10.2)

Is there a way to put a spacer between the sections of the accordion?

Basically what the owner wants is the default functionality of the accordion as it is, but they want some space between the sections vertically.

Can this be accomplished?

Thank you


回答1:


You can add a top margin to the accordion sections except the first like this

  #accordion > h3 {
    margin-top: 50px;
  }

  #accordion > h3:first-child {
      margin-top: 0;
  }

Updated example using the html structure on jquery ui docs



来源:https://stackoverflow.com/questions/15503038/spacer-between-panels-in-jquery-accordion

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!