HTML/CSS format command ?? ..for web designers?

perplexed

New member
I've heard there's a HTML command that will maintain a web pages dimensions so that they remain the way you intended them to look when you designed the page

What is the best element in HTML for this use ??

Whats the best way to do this in HTML/CSS ??

Thanks
 
This is how I always do it, will make you page 780px wide, and then x space on the edges.

CSS--
body{margin:0;padding:0}
#body{margin:0 auto;padding:0;border:solid black;border-width:0 1px; width:780px}

HTML
<body>
<div id="body">
Content
</div>
</body>
 
Back
Top