I need to remove the Horizontal Scrollbar on an overflown

后端 未结 5 644
醉话见心
醉话见心 2021-01-12 02:50

I have defined a tag with a CSS attribute \"overflow\" set to \"scroll\". This is giving me both the vertical and the horizontal scroll bars. I only want the vertical scrol

5条回答
  •  不思量自难忘°
    2021-01-12 03:00

    I realize this is a very old question but I stumbled across it today. If, like me, you only want the y-scrollbar and then only when it's needed, I found this works:

    .myclass {
        overflow-x: hidden;
        overflow-y: auto;
    }
    

    Cheers, Mark

提交回复
热议问题