
The black box is stand for the images that user upload, it is fix the width but the height is free size. I want to put the position of the three gray box on the bottom of td ( like the middle gray box). I used position:absolute, and bottom:0 But if doesn’t work.
I have no idea how can I do that.
If you are using a table then you can not do it in the same cell, because
tdelements cannot takeposition:relative.You need to either restructure your code to not use
tableor use a new rowtrand put the gray boxes in there (demo at http://jsfiddle.net/SWRXW/) ..