I have a table in which each of its TD contains image (more precisely, emoticon) which have same height. Oddly, they are not properly aligned. One emoticon is at the top, the other is at the middle, and the other is at bottom.
Here is a picture to make the explanation easier:
I tried to copy the HTML structure to jsfiddle, but it is properly aligned in there. So I believe this is a CSS problem.
However, my try to modify everything results in no avail. I cannot make it aligned properly. I tried vertical-align:middle and tried to set the padding and margin but I cannot make it align properly.
Is there any help to do this?
EDIT: it turns out that this CSS is the one that is making the problem:
.emotlist {
overflow: auto;
height: 175px;
width: 120px;
}
When I remove the overflow: auto, it displays as I want it to be. But the problem here: I need the overflow:auto to make scrollbar, so in case there are more emoticons added to the table, it will not exceed the defined-height.
EDIT 2: I guess it is not the overflow: auto which is causing the problem, since it is just working fine in the fiddle (as demonstrated by Sheilender)
Disclaimer: I cannot change the HTML structure (in case someone suggest so). I don't have access to the HTML template and what I can do is only style it via CSS.
.
TDelements have the class.emotlistapplied? And that you're making a single long table with 1 row? Or is it multiple rows? As that'll make a big difference. – RemarkLima Apr 4 '12 at 10:12.emotlistis a parent div, and thevalign=middlealso already been used (and I'm also unable to edit the HTML structure since I don't have the access). – deathlock Apr 4 '12 at 10:16 breaking the alignment - not a problem in the fiddle as the broken images caused the cells to be wide enough, if you remove the broken images and set the cells to be narrow then the fiddle will should the same as your image (or thereabouts) – RemarkLima Apr 4 '12 at 10:37