R
Rocky Moore
Okay, I got a quickie for all those in the know. The need to have two
columns, both having dynamic content so height is never known. I originally
had this laid out (on a bigger scale than the code below) but ran into
problems with IE 5 displaying differently that IE 6 or Mozilla, so I fell on
my crutch and turned to tables. Currently the page is being run as HTML 4.1
strict.
It works well at the moment except for that green bar "C". I need a way to
keep it at the bottom of column B. Does anyone have an easy method to do
this which does not require javascript to be enabled?
If you need a sample page I can through the code below into a sample page
and post it later. I just figure, many of you smart people have probably
dealt with this problem and can easily understand where my error (only
making the bar C stay at the bottom of column B regardless of content at
this time
) is located.
I need something that will work on the later model browsers and not
interested in support for older legacy browsers. IE 5.0 is the oldest.
Thanks!
Rocky
--------
<table border="0" cellpadding="5" cellspacing="0"
style="width:100%;background-color: black;color:white">
B
<div style="height:30px;background-color: green">C</div>
</td>
</tr>
</table>
columns, both having dynamic content so height is never known. I originally
had this laid out (on a bigger scale than the code below) but ran into
problems with IE 5 displaying differently that IE 6 or Mozilla, so I fell on
my crutch and turned to tables. Currently the page is being run as HTML 4.1
strict.
It works well at the moment except for that green bar "C". I need a way to
keep it at the bottom of column B. Does anyone have an easy method to do
this which does not require javascript to be enabled?
If you need a sample page I can through the code below into a sample page
and post it later. I just figure, many of you smart people have probably
dealt with this problem and can easily understand where my error (only
making the bar C stay at the bottom of column B regardless of content at
this time
I need something that will work on the later model browsers and not
interested in support for older legacy browsers. IE 5.0 is the oldest.
Thanks!
Rocky
--------
<table border="0" cellpadding="5" cellspacing="0"
style="width:100%;background-color: black;color:white">
<td style="background-color: blue" valign="top">A<br>A<br>A<br>A<br>A<br>A</td>
B
<div style="height:30px;background-color: green">C</div>
</td>
</tr>
</table>