2
I’m working with Bootstrap.
What I want is for the user to be able to decrease the screen up to 700px and from the moment he has with 700px the screen does not decrease more.
It can be via Jquery, Javascript, in JAVA itself or just by CSS, any way help.
Thank you.
body { min-width: 700px; }
must solve.– Tobias Mesquita
Citing this property in the Code does not prevent the user from decreasing the screen, it only says that the minimum size when loading will be 700px. Thank you
– CRAJ
If you are talking to the browser window, fortunately this is beyond reach ;D
– Tobias Mesquita
The ideal would be to use media queries, and define what properties and values you want for each size or from a certain screen size. http://www.w3schools.com/cssref/css3_pr_mediaquery.asp I hope I helped you.
– rmjoia