Take a look at the image link provided below.
https://i.sstatic.net/yhbx9.jpg
I am attempting to use boostrap4
to create a grid layout similar to the one shown in the image. On desktop, the first column should be col-5 width and the other 3 equal. On mobile, the first column should be col-12 and the other 3 equal.
Here is my HTML code:
<div class="row">
<article class="col-5">
<h1 class="text-uppercase">Some Contents</h1>
</article>
<article class="col">
<span class="counter">10</span>
</article>
<article class="col">
<span class="counter">10</span>
</article>
<article class="col">
<span class="counter">10</span>
</article>
</div>
This code works as intended on desktop but not on mobile devices. If anyone can offer assistance or advice, it would be greatly appreciated.