My knowledge of CSS, HTML, and bootstrap is quite limited.
I'm trying to figure out how to split a single column on a large screen into two columns on a smaller screen so that the content in two divs appears side by side instead of stacked on top of each other when resizing the window.
<div class= "container-fluid">
<div class ="row">
<div class="col-xl-9 col-lg-9 col-md-12 col-sm-12 col-12">
<canvas width="800" height="450">
</canvas>
</div>
<div class="col-xl-3 col-lg-3 col-md-12 col-sm-12 col-12">
<div id="Pseudo">
</div>
<div id="Element">
</div>
</div>
</div>
</div>
I aim to have the Pseudo
and Element divs
displayed next to each other on smaller devices and stacked on top of each other on larger screens. It's currently working fine on larger screens.
I've been attempting to achieve this using bootstrap without success. Any guidance would be appreciated as I've been struggling with it for some time now.