frontpage tables not in upper left corner

G

Guest

I want the table to be placed in far upper left corner (0,0), but when I use
a table, it places it slightly off (3,3). Any ideas?
 
M

Murray

Link to an external stylesheet (usingFP's CSS editor), 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-top:0; padding-right:0;padding-bottom:0; padding-left:0; }
/* some browsers use padding instead of margin */
-->
</style>

(when the value is zero, units are not required)

you could also try some shorthand usages -

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

or even better -

body { margin: 0; padding:0; }

to keep things compact.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top