When designing my website, I envisioned having three different options presented upon entering the site. Depending on the size of the screen, I wanted to display varying content.
For XL screens, I wanted all content to be visible, similar to the picture.
https://i.sstatic.net/8dGVH.png
For MD screens, I aimed to hide the pictures and display 2 rows. https://i.sstatic.net/zouNs.png
For XS screens, I wanted to show content in 2 columns. https://i.sstatic.net/oeqjs.png
I managed to achieve the desired layout for XL screens with the code
<div class="col d-none d-xl-block d-xxl-none ">
However, I am unsure how to implement the other two options successfully. I tried the following code for both:
<div class="row">
<div class="col-sm-3">
What am I missing in order to make it work?