vertical scrolling of disabled <select> mutliple element not working in IE

后端 未结 2 1735
臣服心动
臣服心动 2021-01-21 09:22

I have a select multiple element with scrollbars that is disabled. In Chrome and Firefox on Windows it is still scrollable but no selections can be made. However in IE its not s

2条回答
  •  后悔当初
    2021-01-21 10:14

    Check this out.
    HTML:

    CSS:

    #options {
        height:50px;
        width:115px;
        overflow-x:hidden;
    }
    

    Here is the fiddle: http://jsfiddle.net/2ET44/4/

    IE just behaves in an other way. You can fix this by using a div to handle the scrolling.

提交回复
热议问题