Created
September 19, 2015 01:36
-
-
Save zeropopular/ffe73e8332e580a5f790 to your computer and use it in GitHub Desktop.
Revisions
-
zeropopular created this gist
Sep 19, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ For example your dropdown looks like this and has no scrollbar <select> <option value="1">One</option> <option value="2">two</option> <option value="3">Three</option> <option value="4">Four</option> <option value="5">Five</option> <option value="6">Six</option> </select> Put your list inside a DIV tag and set the DIV style overflow:auto and the DIV's height to a fixed height. <div style=overflow:auto> <option value="1">One</option> <option value="2">two</option> <option value="3">Three</option> <option value="4">Four</option> <option value="5">Five</option> <option value="6">Six</option> </select> </div>