https://i.sstatic.net/0qhjT.png
Looking at the image provided, I'm doing a comparison of the minimum resizable widths between my website and GitHub's. Is there a way to enforce a minimum width limit on my website similar to GitHub's?
I've already attempted to add the following code to the CSS file for the page:
body {
min-width: 600px;
width: auto !important;
width: 600px;
}
Unfortunately, despite implementing this code, there doesn't seem to be any change as my browser can still resize below the 600px threshold.
UPDATE: The current solutions suggested have not been successful in resolving the issue.