How to make a Bootstrap accordion collapse when clicking the header div?

后端 未结 7 1862
不思量自难忘°
不思量自难忘° 2020-12-07 08:22

In a Bootstrap accordion, instead of requiring a click on the a text, I want to make it collapse when clicking anywhere in the panel-heading div.

相关标签:
7条回答
  • 2020-12-07 08:53

    Simple solution would be to remove padding from .panel-heading and add to .panel-title a.

    .panel-heading {
        padding: 0;
    }
    .panel-title a {
        display: block;
        padding: 10px 15px;
    }
    

    This solution is similar to the above one posted by calfzhou, slightly different.

    0 讨论(0)
提交回复
热议问题