cssimagehtml-tablescrollbars

Force Scrollbars Images CSS


How would I accomplish the following without the use of tables?

If I don't wrap the imgs in tds the scroll bars aren't forced.

The imgs are pushed down like regular text with out the tds.

I have tried setting the imgs to display:block, inline-block and a couple other ideas but I'm clueless.

http://jsfiddle.net/zjews/

Edit: I could apply inline-table to the wrapped "a" links but unfortunately internet explorer doesn't support this property. Does anyone know of a way to emulate inline-table in internet explorer.


Solution

  • is this what you mean?: http://jsfiddle.net/SebastianPataneMasuelli/zjews/1/

    i wrapped the links and images in a container div, and then simply gave the div the style white-space:nowrap;, which i'm pretty sure is read by all browsers.