Can I specify multiple data targets for Twitter Bootstrap collapse?

前端 未结 7 1360
耶瑟儿~
耶瑟儿~ 2020-12-03 04:26

I\'d like to target two divs for expand when clicking on a single trigger? Is that possible?

相关标签:
7条回答
  • 2020-12-03 05:09

    You can simply add all the ids separated by commas in data-target:

      <button type="button" class="btn btn-primary dropdown-toggle btn-sm" 
      data-toggle="collapse" data-target="#demo,#demo1,#demo2">Hide them all</button>
    
    0 讨论(0)
提交回复
热议问题