How make middle cell in table vary?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

if yo ugo to www.theblackdog.com notice how the middle cell of the table varies with the width of the browser, but the 2 end cells stay the same. And when you make the browser window smaller, it only collapses to 450 pixels or so without squeezing the end cells. Can somone tell me how to reproduce this table behaviour? thanks..
j
 
While viewing that site from IE, do File Menu | Edit with FP then you can
look at how they have accomplished this with nested tables.

--

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

FrontPage Resources, Forums, WebCircle,
MS KB Quick Links, etc.
==============================================


Jimmy Fallon said:
if yo ugo to www.theblackdog.com notice how the middle cell of the table
varies with the width of the browser, but the 2 end cells stay the same. And
when you make the browser window smaller, it only collapses to 450 pixels or
so without squeezing the end cells. Can somone tell me how to reproduce this
table behaviour? thanks...
 
Right-click the Page, and view the source code.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

Jimmy Fallon said:
if yo ugo to www.theblackdog.com notice how the middle cell of the table
varies with the width of the browser, but the 2 end cells stay the same. And
when you make the browser window smaller, it only collapses to 450 pixels or
so without squeezing the end cells. Can somone tell me how to reproduce this
table behaviour? thanks...
 
When I try that I get an error,
"The specified file or website does not exist"
Maybe they have a lock on it or something?
jf
 
Hi Jimmy,
first set your margins to 0
<BODY LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">
then sling a 100% 3 column table on the page with left and right cell widths
set -
<table width=100% border=0 cellspacing=0 cellpadding=0>
<tr>
<td width=150>left column</td>
<td>centrecolumn</td>
<td width=150>right column</td>
</tr>
</table>

--
Jon
Microsoft MVP - FP

Jimmy Fallon said:
if yo ugo to www.theblackdog.com notice how the middle cell of the table
varies with the width of the browser, but the 2 end cells stay the same. And
when you make the browser window smaller, it only collapses to 450 pixels or
so without squeezing the end cells. Can somone tell me how to reproduce this
table behaviour? thanks...
 
Back
Top