How make middle cell in table vary?

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
 
T

Thomas A. Rowe

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...
 
K

Kevin Spencer

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...
 
G

Guest

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
 
J

jon spivey

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...
 

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