I am using a select box in my codes which contains 50 options, by default when I click on it, drop down menu appears like below:
<select name="Select1" style="width: 56px">
<option></option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
but I want it to appears like a table:
I tried some CSS and JS but didn't work, is there any way to do this?