Can I specify a minimum clearence width for any edge of a table, from the text that wraps it?

  • Thread starter Thread starter David F
  • Start date Start date
D

David F

Using FP 2003.
I mean a clearance from the text that wraps the table from the outside of
course.
Would like to specify it in pixels if possible.

Thanks,

David
 
I think you want cellpadding: sets the amount of space between the contents
of the cell and the cell wall. In Design View, right-click on the table and
choose table properties.
 
Actually I meant exactly what I wrote: "...wraps the table from the OUTSIDE
of course."
and not inside.

David
 
See if the following helps:
http://www.ycoln-resources.com/help/tables.htm

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
The only ways to add "padding" to the outside of a table is
- nest it in a hidden outer table and apply cell padding
- or use CSS (see style below)

Try this code in a white background page
<div align="left">
<table align="left" cellpadding="10" cellspacing="0" width="100" bgcolor="#FFFFFF" bordercolor="#FFFFFF" id="table1"
style="margin-right: 20; margin-left: 20">
<tr><td>One</td><td>Two</td></tr>
</table><p>Three</p></div>


--




| Actually I meant exactly what I wrote: "...wraps the table from the OUTSIDE
| of course."
| and not inside.
|
| David
|
| message | > I think you want cellpadding: sets the amount of space between the
| contents
| > of the cell and the cell wall. In Design View, right-click on the table
| and
| > choose table properties.
| >
| > --
| > ~ Kathleen Anderson
| > Microsoft MVP - FrontPage
| > Spider Web Woman Designs
| > http://www.spiderwebwoman.com/resources/
| >
| >
| >
| > | > > Using FP 2003.
| > > I mean a clearance from the text that wraps the table from the outside
| of
| > > course.
| > > Would like to specify it in pixels if possible.
| > >
| > > Thanks,
| > >
| > > David
| > >
| > >
| >
| >
|
|
 
you mean cell spacing/cell padding? it's in the 'cell properties' when you
right-click within the cell of a table.
 

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

Back
Top