CSS - Only Horizontal Overflow?

2019-01-23 23:44发布

问题:

Is it possible to achieve only horizontal overflow in CSS 2.1?

overflow: auto;

Will cause a block element to have both horizontal and vertical scrollbars. I want a block element (let's say <div>) which will display only horizontal scrollbars. How do I do that?

回答1:

Try overflow-x: auto;

It even works in IE6!



回答2:

I tried overflow-x: hidden; and that worked for me