Creating a card using Bootstrap 4 with a .card-header and .card-block:
<div class="card">
<div class="card-header">
<a data-toggle="collapse" href="#test-block" aria-expanded="true" aria-controls="test-block">
card header
</a>
</div>
<div id="test-block" class="card-block">
card block
</div>
</div>
Trying to toggle the card block by clicking the card header using Bootstrap's collapse mechanism, but experiencing choppy animation.
Investigating the reason for this issue. Check out the example on codepen.