R – What are some best practices to support multiple resolutions in a web application

user interface

What are some best practices on enabling a web application to support multiple resolutions? Specifically resolutions that are wide-screen vs. normal aspect ratio.

It doesn't seem like there is an easy answer – other than simply supporting a few fixed resolutions and using some absolute positioning to get the layout to work correctly.

This of course gets even more difficult to make it cross browser.

Does anyone have any good resources of this problem?

Best Answer

You can always try to use a liquid layout structure where the width of your elements are scaled proportionate to how wide their browser window is.

here is a good article explaining different layouts including liquid layout.

http://www.maxdesign.com.au/presentation/liquid/

PS. the above mentioned site (maxdesign.com.au) is using liquid layout itself, so try and change the size of your browser when reading the article.

Related Topic