Forgive me if this sounds silly, but I'm struggling to find an answer for what I want to accomplish...
I'm attempting to create a responsive container div (similar to a column inside a row).
For example, I would like to achieve the following effect:
<div className="container">
<div className="row justify-content-center">
<div className="col-lg-6 cold-sm-10">
...
</div>
</div>
</div>
but all in one line... something like:
<div className="container-lg-6 container-sm-10">
...
</div>
Is there a way in Bootstrap to achieve this?
I've tried using the classes container-sm
but they don't work as expected.