How do I collapse a table row in Bootstrap?

前端 未结 6 904
予麋鹿
予麋鹿 2020-12-13 18:29

I am using Bootstrap 2.3.2 in my app and I need to completely hide a row using the collapse plugin. Below is an example:




        
6条回答
  •  时光取名叫无心
    2020-12-13 18:40

    You can do this without any JavaScript involved

    (Using accepted answer)

    HTML

    Show me collapsed

    CSS

    .nopadding {
        padding: 0 !important;
    }
    
    .content {
        padding: 20px;
    }
    

提交回复
热议问题