View Full Version : browser views
crc200
10-27-2003, 06:29 PM
hello excuse my english please i want know how i can do to when the webpage content are view in the browsers they automatically adjust the size of the text and graphis for the different browser views for example full screen etc.
softwaresubmit
10-27-2003, 06:38 PM
Keep graphics size fixed, do not resize it dynamicaly. If it is 100x200, fix it at 100x200. You might want to resize the font sizes, but I'd stick with pixels (px in CSS).
If you want your webpage to resize easily, design it as a table and make part of the cells widths defined in % or left blank, instead of pixels. For example:
<TABLE WIDTH=100% BORDER=1>
<TR>
<TD WIDTH=100>something fixed at 100px</TD>
<TD>resize this</TD>
<TD WIDTH=150>something fixed at 150px</TD>
</TR>
</TABLE>
carbonize
10-27-2003, 07:12 PM
Remembering to always quote your attributes though.
softwaresubmit
10-27-2003, 07:26 PM
Remembering to always quote your attributes though.
Ooops... I forgot about them "" quotes in that simple example :-/
ranjan
10-29-2003, 02:27 AM
http://www.dwfaq.com/tutorials/Tables/flexible_tables.asp
by James Shook one of the most read tutorials on the internet
crc200
11-22-2003, 05:13 AM
thank you to all for your help