2
我正在使用Bootstrap 4 Collapse,它的工作完美,如果可能,我只想更改一件事情。有沒有辦法阻止它推下它下面的內容,而是要去掉它的內容?這有可能實現嗎?如何?Bootstrap 4:停止推倒內容
這裏是基本的HTML它:
<p>
<a class="btn btn-primary" data-toggle="collapse" href="#collapseExample" aria-expanded="false" aria-controls="collapseExample">
Link with href
</a>
</p>
<div class="collapse" id="collapseExample">
<div class="card card-block">
Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. Nihil anim keffiyeh helvetica, craft beer labore wes anderson cred nesciunt sapiente ea proident.
</div>
</div>
<div>Content goes here</div>
謝謝!
謝謝Felix! – Retros