I have the following code: link
I need to get this collapse
, start closed. That is, when opening the page it starts closed, and only after clicking it open ....
I have the following code: link
I need to get this collapse
, start closed. That is, when opening the page it starts closed, and only after clicking it open ....
Just set up the HTML as if it were "
Just increase display: none;
to CSS:
.panel-body {
background: #f5f5f5;
padding: 25px;
display: none;
}