Is it possible to achieve only horizontal overflow in CSS 2.1?
overflow: auto;
Will cause a block element to have both horizontal and verti
Try overflow-x: auto;
overflow-x: auto;
It even works in IE6!