Setting minimum size limit for a window minimization of browser?

You can try

body {  min-width:600px; }

You will get a horizontal scrollbar once the viewport gets less than 600px. This will work in only modern browsers supporting min-width CSS property.

I don’t think it is possible to restrict user from resizing, and it shouldn’t be!

Leave a Comment