echo "<td width=100> $aa[0] $aa[1] $aa[2] $aa[3] <span style=\"vertical-align:bottom; text-align:right;\">$day_num</span> </td>";
In a table cell like above, I want to show $aa[] items at the top of the cell under each other, which is ok...But I want to show $day_num at the bottom of that same table cell. I tried the code above but it doesnt work....
I also tried to put $day_num in a <div> such as <div class='day_num'>$day_num</div>
and in css, i say vertical-align:bottom; for that .day_num division....That doesnt work either...
In other words, how can you align different items in a single table cell. By the way I do not want to introduce another table in that cell because it creates problems.
Please help...