I currently have a bootstrap 4 card layout that looks like this:
<div class="card-body">
<img src="{{asset('images/yimage.jpg')}}" alt="..." class="rounded-circle">
<p>This is Title of the Topic</p>
</div>
However, I am looking to split the above card-image
class into two separate columns with a ratio of 1:3. I want to place the image and topic in these columns. Is there a way to achieve this?