codice:
	<html> 
<head> 
<STYLE type="text/css"> 
body {background:white; font-family:"Courier New";} 
h1 {font-size:15px;} 
select {background:#FFDE00; font-weight:bold;} 
option {color:red; font-weight:bold;} 
.op1 {color:#fff; background:green;} 
.op2 {color:blue; background:white;} 
.op3 {color:#000; background:red;} 
</STYLE> 
</head> 
<body> 
<h1>ESEMPIO FORMATTAZIONE SELECT E OPTION</h1> 
<select><option value="#">-- scegli --</option> 
<option value="1" class="op1"># op1 op1 op1 op1</option> 
<option value="2" class="op2"># op2 op2 op2 op2</option> 
<option value="3" class="op3"># op3 op3 op3 op3</option> 
</select> 
</body> 
</html>