how to set a minimum resolution

0

I'm building a system in php for box control. It will be a computer-only system, meaning you will not be responsible.

I created the menu, the information of the boxes and etc ...

It's all 100%, but I noticed that on some computers with low resolution or even if I decrease the window of my browser, some system divs show line break. Is there any way to avoid this, set a minimum resolution and when it is hit by a scroll bar instead of line breaks?

The site of facebook does this, however you reduce the browser it does not change the positions of objects and creates a scroll bar.

    
asked by anonymous 10.05.2016 / 18:44

1 answer

0

In your css, in the body tag define:

body {
    min-width: 800px;
}
    
10.05.2016 / 21:29