tables

  • Thread starter Thread starter Frederik Goerlandt
  • Start date Start date
F

Frederik Goerlandt

Hello,

I have a problem with the tables on my site.
My site is based on tables and not on frames.
So I have a cell in my table of 400 pixles width and when I put another
table in that cell, wich is 90% width, Frontpage doesn't take 90% of the 400
pixels...

How does this come? And how do I solve the problem?

Frederik
 
-----Original Message-----
Hello,
Howdy.

I have a problem with the tables on my site.
My site is based on tables and not on frames.
So I have a cell in my table of 400 pixles width and
when I put another table in that cell, wich is 90%
width, Frontpage doesn't take 90% of the 400 pixels...

How does this come? And how do I solve the problem?

I just tried this and it worked OK for me. To repeat my
experiment, open a new blank page, switch to HTML view,
and paste the following code after the <body> tag:

<table border="0" cellspacing="1" bgcolor="#FFFF00">
<tr>
<td>&lt;------outer table------&gt;</td>
</tr>
<tr>
<td width="400">
<table border="0" cellspacing="1" width="90%"
bgcolor="#FF0000">
<tr>
<td>11111</td>
<td>2</td>
</tr>
<tr>
<td>3</td>
<td>4444444444444</td>
</tr>
</table>
</td>
</tr>
</table>

If you don't get the same results in your Web page, you
must have some other content that's affecting the results.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
|| Microsoft FrontPage Version 2002 Inside Out
|| Web Database Development Step by Step .NET Edition
|| Troubleshooting Microsoft FrontPage 2002
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 
Back
Top