i have a table cell that looks something like this
i am looking for some css to position the weekday at the top left of the cell and the contents of the itemsContainer at the bottom right. The cells are variable height but a fixed width. It may be possible for me to contrain the height if this is required.
I'm drawing a blank at present. i would normally try absolute positioning on the items Container and relative on the td but this does not seem to work on firefox/safari ( and i have not tried other browsers).
all help gratefully received.
thanks
Justin
Code:
<td>
<div class="weekday">1</div>
<div class="itemsContainer">
<span class="item">something</span>
<span class="item">something else</span>
</div>
</td>
I'm drawing a blank at present. i would normally try absolute positioning on the items Container and relative on the td but this does not seem to work on firefox/safari ( and i have not tried other browsers).
all help gratefully received.
thanks
Justin