I want to develop an application that employs a liquid layout. The minimum resolution target is 1024x768. I've found that if I specify a width and a height for the Application, when I resize the browser to be smaller, the browser displays scroll bars (which is what I expect) and would allow users with smaller resolutions to use those scrollbars to navigate the application.
However, when I use constraints to allow the height and width to vary with screen area and set a minWidth and minHeight, the browser does not display scrollbars when I resize the window to smaller than the minWidth/minHeight.
To sum it up, I want the application to expand when the screen is larger than the target res, and display browser scrollbars if the screen is smaller than the target res.
Can't seem to figure it out .. What am I missing?