cellpadding for one cell only?

P

Paul Kraemer

Hi,

I am using Frontpage 2000. I have a two column table in
which I want cellpadding="0" for all cells except for the
bottom two. For the bottom two cells, I'd like to be
able to set the cellpadding to a higher value. I can't
seem to find a way to set cellpadding for specific cells
(as opposed to the table as a whole). Is this possible?
If not, is there another way I can do this?

Thanks,
Paul
 
T

Tom Pepper Willett

You could put a one cell table inside each of the bottom two cells, and
control the padding for each of the one cell tables.
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
FrontPage 2003 Product Information:
http://www.microsoft.com/office/frontpage/prodinfo/default.mspx
Understanding FrontPage:
http://msdn.microsoft.com/office/understanding/frontpage/
FrontPage 2002 Server Extensions Support Center:
http://support.microsoft.com/default.aspx?scid=fh;en-us;fp10se
===
| Hi,
|
| I am using Frontpage 2000. I have a two column table in
| which I want cellpadding="0" for all cells except for the
| bottom two. For the bottom two cells, I'd like to be
| able to set the cellpadding to a higher value. I can't
| seem to find a way to set cellpadding for specific cells
| (as opposed to the table as a whole). Is this possible?
| If not, is there another way I can do this?
|
| Thanks,
| Paul
 
M

Murray

You could use CSS to specify the padding for that particular cell(s), e.g.,

td.special { padding:155px; }
.....

<td class="special">I am going to blow your table out!</td>
 

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