Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we add class attribute in option element?

I want to add class for my option element. Is that valid to add class attribute in HTML option element?

like image 418
Ifan Iqbal Avatar asked Aug 26 '13 07:08

Ifan Iqbal


1 Answers

Yes it is valid.

From the W3Schools website:

The <option> tag also supports the Global Attributes in HTML.

From which the class attribute is a part of. Please note that often, the option tag has formatting issues regarding the browser you are using, so styling it can be a little tricky.

EDIT: Since I wrote this answer, it has come to my attention that W3Schools probably isn't the most reliable source of good information. The previous answer isn't at all wrong, but it came from a source that has proven to be somewhat inconsistent/incomplete. As such, I think I should also append a more official link to this subject here.

like image 67
Joum Avatar answered Sep 22 '22 23:09

Joum