I am working with Bootstrap code and I have encountered an issue within a card element. There seems to be extra space on the left and right side of the card, which I would like to eliminate so that the content fits within the main card itself.
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="b6d4d9d9c2c5c2c4d7c6f68298869886">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<div class="card">
<h5 class="card-header">testing</h5>
<div class="card-body">
<div ng-bind-html="desc"></div>
<div class="card">
<div class="card-block">
<div class="row no-gutters">
<div class="col">
<img class="img-fluid" src="http://placehold.it/800x300" alt="image">
</div>
<div class="col">
<img class="img-fluid" src="http://placehold.it/800x300" alt="image">
</div>
</div>
</div>
</div>
</div>
</div>
</div>