Change HTML dropdown option font size - HTML CSS HTML Tag

HTML CSS examples for HTML Tag:select

Description

Change HTML dropdown option font size

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials