I've prepared a fiddle for you, here it is: http://jsfiddle.net/VvkQd/1/

I wan't that red "bottom" to be at the bottom of this td. What its not working?

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

You could add position relative to that <td> and absolutely position the text you want. It's not the most elegant solution but neither are tables..

http://jsfiddle.net/neilheinrich/VvkQd/4/

link|improve this answer
Um, now; when there is much text in the second col, the text is overlapping over the "Bottom" text. Any solution? – Cyclone Nov 1 '11 at 2:51
add padding-bottom to that <td> enough to overlap the size of the <div> – nheinrich Nov 1 '11 at 2:57
here is an example: jsfiddle.net/neilheinrich/VvkQd/5 – nheinrich Nov 1 '11 at 2:58
Thanks :-) <Short> – Cyclone Nov 1 '11 at 3:04
sorry but I got next problem: I used padding-bottom there, but this text "Bottom" is user-specified, so user may type some large text and small font-texts, if it happends , it looks kinda bugged and overlapp too - i'll have to change padding-bottom depends on the text that user specified. – Cyclone Nov 1 '11 at 3:29
feedback

The vertical-align is for it's content so even if you set it on a div, and if the div was bigger it won't even work, I suggest adding another tr

http://jsfiddle.net/HNhy9/

Hope you'll find a best answer ... Maybe you should work only with div

link|improve this answer
Your solution doesn't work xD. – Cyclone Nov 1 '11 at 2:22
feedback

Rowspan would do the trick.

http://jsfiddle.net/VvkQd/1/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.