I am currently developing a Bootstrap 4 single-page application with a fluid-container
that is specifically designed for desktop use only.
My goal is to set a minimum body width of 1200px and enable horizontal scrolling if the browser width is reduced below that. Any size larger than 1200px should remain responsive.
I initially attempted the following:
<meta name="viewport" content="width=device-width, initial-scale=1">
as well as
body { min-width: 1200px; }
However, these methods did not yield the desired outcome. I also tried applying the settings to the fluid-container, but the elements within still remained responsive below 1200px.
While the columns within the container are frozen, other elements continue to be affected by responsive behavior when the size drops below 1200px. This behavior needs to be addressed.
How can I implement a minimum width in Bootstrap 4 fluid-container
and ensure that all elements do not respond below that threshold?