I'm using bootstrap to build my website.
One thing I'd like to achieve is preventing the window from resizing beyond a certain point downwards. Currently, here's what I have:
html, body{
min-width: 300px;
max-width: 3000px;
min-height: 550px;
max-height: 1500px;
}
This code successfully locks the width of the window at 300px so it can't be scaled down further. However, when it comes to height, this approach doesn't seem to work as expected. Despite setting various parameters, the window height remains scalable.
If anyone knows how to make it so that once the window reaches a height of 550px, it also locks in place and cannot be resized further, I would greatly appreciate your assistance. Thank you!