CSS - Only Horizontal Overflow?

后端 未结 2 1294
闹比i
闹比i 2020-12-16 10: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 verti

相关标签:
2条回答
  • 2020-12-16 11:15

    Try overflow-x: auto;

    It even works in IE6!

    0 讨论(0)
  • 2020-12-16 11:30

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

    0 讨论(0)
提交回复
热议问题