How to use multiple class for Select Control
-
Hi, I am using HTML select control and i want to display first option in italics style, other options are in normal font-style. How can i do this ?
Cheers..! Vijay s
you can create a custom select control using divs ... and javascript.:rose:
Abhishek Sur My Latest Articles Basics on LINQ and Lambda Expressions
Create .NET Templatesmodified on Friday, May 15, 2009 5:20 AM
-
Hi, I am using HTML select control and i want to display first option in italics style, other options are in normal font-style. How can i do this ?
Cheers..! Vijay s
you can use example below <style> .italic{ /*add code here*/ } .normal{/*add code here*/} </select> <select> <option class="italic" > option1 </option> <option class="normal" > option1 </option> <option class="normal" > option1 </option> .... </select> sealight