This is my site layout http://www.incredibleanime.com/series/area-no-kishi/ As you can see the cell with the picture in it has a big gap between the next cell. How can I make it auto with by it's content? I can't give it a fixed width cause the picture will always have different width size.
Just add display:inline-table;
in your td. it will solve your problem.
td {
display: inline-table;
vertical-align: top;
}
Just apply this css and check.