-
Resizing the Browser
Hey guyz,
i wanted to resize the browser.. becusae when i run it and play it... the webpage is not automatically expanded to the maximum.. how do i set it that every time i open it,... its automatically expanded.
Lets say i want to make the browser size as 800*600.. is there anyway i can set the size herE?
-
Re: Resizing the Browser
WHen you design your webpages, simply avoid using absolute values. I.e. instead of using:
Code:
<INPUT TYPE="text" width="500px" style="width:500px" />
use:
Code:
<INPUT TYPE="text" width="100%" style="width:100%" />
-
Re: Resizing the Browser
javascript code:
Code:
window.resizeTo(800,600);