0

how to descrease the height of select box .It is loading with large number of records like 200 or three hundered.I want to make it smaller

CodamRanjan
  • 49
  • 1
  • 2

1 Answers1

0

That is not possible with pure CSS, you have to check some other solutions, like javascript or select that is build on divs.

TRY: <select onmouseclick="this.size=10;" onmouseout="this.size=1;"> ... </select>

alexsuslin
  • 4,130
  • 1
  • 20
  • 30