Please note: I don't want to resize my own page, just the browser window, as soon as the user accesses my site. Is this possible?
|
You can't do this with HTML or CSS. You can do it with JavaScript if the user hasn't configured their browser to prevent this. (I have set this in my browser as it is very annoying). A better solution is to use responsive design. Your website adjusts to their browser width instead of the other way around. |
|||||||
|
|
Wrong approach, your site should adapt to the person's screen, not vice-versa. My LCD's screen resolution is 1920x1200 and it irritates me that so many sites still to this day waste most of the screen. In fact SO uses exactly half of the width of my screen, only 960 pixels out of 1920 in width. You should use percentages for your main layouts and stick to using margins. If you use padding use it very sparingly and only in very specific situations. My site in my profile is a perfect example of dynamic/liquid/adaptive layout as it's designed to work irregardless of whether you're on a tiny phone or a huge multi-monitor HD screen setup. |
|||||||||||
|