Collapse DIV only on Mobile View - Bootstrap 3

前端 未结 4 443
甜味超标
甜味超标 2020-12-14 06:56

I have a sidebar search parameters. I want to make collapse function on this DIV only on Mobile device. Using Bootstrap 3 - Latest version.

Here is the HTML Markup.<

4条回答
  •  长情又很酷
    2020-12-14 07:28

    You could do it this way:

    
    
    

    CSS:

    #SearchParameters.in,
    #SearchParameters.collapsing {
        display: block!important;
    }
    

提交回复
热议问题