Table fit

  • Thread starter Thread starter erick-flores
  • Start date Start date
E

erick-flores

Hello there, I am new using frontpage 2003. I am trying to make a table
to star building my website. But when I insert a table, it will not go
to the left and upper edges. The table will be like floating without
touching any edges.
How to a make my table to fit the left and upper size of the screen?

Thank you
 
Link to an external stylesheet, or embed a stylesheet in your code (between
<head> and </head>) with the following style in it (embedded shown for
cut-n-paste convenience) (assuming you want zero margins) -

<style type="text/css">
<!--
body { margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;
padding:0; }
-->
</style>
(when the value is zero, units are not required)

you could also try

body { margin: 0 0 0 0; padding:0; }

or

body { margin: 0; padding:0; }

as a shorthand method.

This will take care of the margins in IE4+ and NN6+.
 
Right Click on your page for Page Properties, and set the following to zero:
Top Margin, Left Margin, Margin Width, Margin Height
 
Invalid code, however....

It's so much easier to do it with CSS, and much more valid, too! 8)
 
Back
Top