I have a select and a button. Their default size in a browser is tiny. I want to increase the size of both for better visibility. I found how to make the button larger, but the same trick is ignored in the select. Any suggestions how to do this will be greatly appreciated.
<select id="selectFunction" size=3 onchange="readSelection()">
<option value="0"> <style="font:bold 16px Arial"> z = r²</option>
<option value="1">z = r´</option>
<option value="2">z = x²-y²</option>
<option value="3">z = 100xy-x²-y²</option>
</select>
<button type="button" style="font:bold 16px Arial"; onclick="draw()">Draw</button>