<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<div class="row">
<div class="col-sm-3">
<div class="card bg-light mb-3 text-left" style="max-width: 18rem;">
<div class="card-header text-center">Logo</div>
<div class="card-body">
<h5 class="card-title">Light card title</h5>
<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>
</div>
</div>
</div>
</div>
The code above generates the following layout:
+-----------+
| Logo |
+-----------+
| Content |
+-----------+
However, I would like it to look like this:
+------+-----------+
| Logo | Content |
+------+-----------+
| Content |
+------------------+
I want the Card Header to be on the left side. I am using the most recent version of Bootstrap.