I am wondering if it is possible to apply two styles within an \[code\]option\[/code\] element? For example, in my code below, I would like my product name to be of style \[code\]color:black;\[/code\] while the price be of another style \[code\]color:red; font-weight:bold;\[/code\]. I have tried wrapping my price around \[code\]span.price\[/code\] but that did not work.\[code\]<select> <option>Apple <span class="price">$1.00</span></option> <option>Banana <span class="price">$2.50</span></option> <option>Cherry <span class="price">$1.50</span></option></select>\[/code\]