I'm currently utilizing the container
class in my project and I'm looking for an elegant way to switch it to container-fluid
or adjust the width to resemble container-fluid
when the website is viewed on a tablet, so it utilizes the full width of the device rather than shrinking it.
Should I use @media
queries to achieve this and modify the container
class?
What would be considered best practice in this scenario?