Connecting Tech Pros Worldwide Forums | Help | Site Map

How to get this effect ?

Richard A. DeVenezia
Guest
 
Posts: n/a
#1: Jul 20 '05
Can't figure out how to do this.

I have a table with 2 columns and 7 rows. I want a paragraph to the right
of the table, so the bottom of the paragraph lines up with the bottom of the
table. After the paragraph I want normal flow again.

--
Richard A. DeVenezia



Richard A. DeVenezia
Guest
 
Posts: n/a
#2: Jul 20 '05

re: How to get this effect ?


"Richard A. DeVenezia" <radevenz@ix.netcom.com> wrote in message
news:bjrchf$m7qla$1@ID-168040.news.uni-berlin.de...[color=blue]
> Can't figure out how to do this.
>
> I have a table with 2 columns and 7 rows. I want a paragraph to the right
> of the table, so the bottom of the paragraph lines up with the bottom of[/color]
the[color=blue]
> table. After the paragraph I want normal flow again.
>[/color]

Just to be perfectly clear. It would be as if I had this third cell in row 1
<TD ROWSPAN="7" VALIGN="BOTTOM">Paragraph</TD>

--
Richard


Brian
Guest
 
Posts: n/a
#3: Jul 20 '05

re: How to get this effect ?


Richard A. DeVenezia wrote:[color=blue]
>
> I have a table with 2 columns and 7 rows. I want a paragraph to the right
> of the table,[/color]

float the table left.
[color=blue]
> so the bottom of the paragraph lines up with the bottom of the
> table. After the paragraph I want normal flow again.[/color]

And what if the paragraph is either too small or too large to fit as
you want it?

--
Brian
follow the directions in my address to email me

Richard A. DeVenezia
Guest
 
Posts: n/a
#4: Jul 20 '05

re: How to get this effect ?


"Brian" <usenet1@mangymutt.com.invalid-remove-this-part> wrote in message
news:5Mb8b.418627$YN5.283426@sccrnsc01...[color=blue]
> Richard A. DeVenezia wrote:[color=green]
> >
> > I have a table with 2 columns and 7 rows. I want a paragraph to the[/color][/color]
right[color=blue][color=green]
> > of the table,[/color]
>
> float the table left.
>[color=green]
> > so the bottom of the paragraph lines up with the bottom of the
> > table. After the paragraph I want normal flow again.[/color]
>
> And what if the paragraph is either too small or too large to fit as
> you want it?
>
> --[/color]


It's actually just a short sentence; "This is the pattern." But if even
that was 'too large to fit' I suppose I would want it under the table.


--
Richard


Brian
Guest
 
Posts: n/a
#5: Jul 20 '05

re: How to get this effect ?


Richard A. DeVenezia wrote:[color=blue]
>[color=green][color=darkred]
>>> I have a table with 2 columns and 7 rows. I want a paragraph
>>> to the right of the table, so the bottom of the paragraph lines
>>> up with the bottom of the table. After the paragraph I want
>>> normal flow again.[/color]
>>
>> And what if the paragraph is either too small or too large to fit
>> as you want it?[/color]
>
> It's actually just a short sentence; "This is the pattern." But if
> even that was 'too large to fit' I suppose I would want it under
> the table.[/color]

Is it a caption for the table? If so, mark it up as a caption, and
not as a paragraph.
< http://www.w3.org/TR/html401/struct/....html#h-11.2.2 >

Then, in css, you have a couple of choices:

(1) use display: table-row and table-cell on the table and caption
element. Does not work with MSIE.

(2) assign a width to the table (sensibly, in flexible units for
text); then use position to place the caption. This can produce a
fragile layout that breaks in certain situations.

With a url, we might have a better idea of the situation, and perhaps
a better solution.

--
Brian
follow the directions in my address to email me

Closed Thread