html4 - Is there any fixed size of the webpage? -


i have started html. making tables in it. tried breaking webpage 2 adding sidebar @ left confused size. standard size of webpage? here code,

<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd"> <html>     <head>         <meta http-equiv="content-type" content="text/html; charset=utf-8">         <title>inter notes homepage</title>     </head>      <body> <table>             <tr height="50">                 <td width="200" height="610"></td>                 <td width="800" ></td>             </tr>         </table>     </body> </html> 

there no standard size webiste such vary according screen size of user. can 1 of 2 things. can work in % based measurements, tables sizes can set stretch full browser size example 100%, or other size matter. alternative use fixed widths such pixels. generally, design sites fit 1024x768 screen resolution minimum. translates 950px or 960px wide.

all depends on design of site better option you. more fan of fixed width designs.


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -