Website Content Resolution and CSS
How to adjust content to the resolution of the visitor? What resolution should I choose?
Simply apply a relative width, which changes depending on the size of the Window and the screen of the visitor page. The most common is to use the body tag. If you use a #div or body tag to adjust the size of the page, use the below CSS code:
body {width: 100%;}
With the above code you page will take 100% of the Window, regardless of its size. Obviously you can set the width you want such as 90%, 80%, etc… If you define a smaller width, it can focus with “margin auto”.