I am trying to get a series of image in cells a table row to all align at the bottom of the table cells..... I have tried both the img align top, botom and abstop and absbottom, but they always end up aligned in the vertical center of the cell.
The images are nothing more than one image that has been resized vertically based on a data array.
here is a sample
<
<td> <img src='./images/<?echo $wspbar[0]?>'alt="<? echo $wspd[0]?> Kts" align="top" height = "<?echo $wspht[0]?>" width = "35" ></td>
<td> <img src='./images/<?echo $wspbar[1]?>'alt="<? echo $wspd[1]?> Kts" align="top" height = "<?echo $wspht[1]?>" width = "35" ></td>
let's say that
$wspbar[0] = 4
and
$wspbar[1] = 2
I end up with the image resized propperly, but when the table is created the images are all centered vericaly in the cells.....
rather than a vertical bar graph, I end up with what appears like the audio track display in Win Movie maker... a spectragraph
X
XX <- What I get.
XX
X
X
X <- What I am trying to get
XX
XX
Any push in the right direction greatly appreciated.