I'm currently using the card code provided by Bootstrap on their site, but I'm having trouble center-aligning the cards on my page without also center-aligning the text within the cards.
Here's what I have at the moment --> https://i.sstatic.net/wKnnw.png
<div class="card col-33" style="width: 16rem; margin-right: 2rem;">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link">Card link</a>
<a href="#" class="card-link">Another link</a>
</div>
<div class="card col-33" style="width: 16rem; margin-right: 2rem;">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link">Card link</a>
<a href="#" class="card-link">Another link</a>
</div>
<div class="card col-33" style="width: 16rem; margin-right: 2rem;">
<div class="card-body">
<h5 class="card-title">Card title</h5>
<h6 class="card-subtitle mb-2 text-muted">Card subtitle</h6>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a href="#" class="card-link">Card link</a>
<a href="#" class="card-link">Another link</a>
</div>
The layout I want is something like this --> https://i.sstatic.net/toWjF.png
Right now, I'm not too concerned about the styling as I can adjust that in CSS later on.