Hide html horizontal but not vertical scrollbar

后端 未结 8 1911
南笙
南笙 2020-11-28 19:49

I have an HTML textarea that is of fixed width, but variable height. I would like to set overflow:scroll and be able to show a vertical scrollbar, but not a hor

8条回答
  •  醉梦人生
    2020-11-28 19:58

    .combobox_selector ul {
        padding: 0;
        margin: 0;
        list-style: none;
        border:1px solid #CCC;
        height: 200px;
        overflow: auto;
        overflow-x: hidden;
    }
    

    sets 200px scrolldown size, overflow-x hides any horizontal scrollbar.

提交回复
热议问题