HTML CSS examples for HTML Tag:select
Change HTML dropdown option font size
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> select {<!--from www. ja v a 2 s . co m--> font-size:51px; } </style> </head> <body> <select> <option>Test</option> </select> </body> </html>