Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

material_select option's class #3224

Closed
matrix818181 opened this issue Jun 2, 2016 · 1 comment
Closed

material_select option's class #3224

matrix818181 opened this issue Jun 2, 2016 · 1 comment

Comments

@matrix818181
Copy link

The following code :

<select>
<option class="">1</option>
<option class="current">2</option>
<option class="">3</option>
</select>

Will result in :

<ul id="..." class="dropdown-content select-dropdown">
<li class=""><span>1</span></li>
<li class=""><span>2</span></li>
<li class=""><span>3</span></li>
</ul>

Could it be possible that it come out has :

<ul id="..." class="dropdown-content select-dropdown">
<li class=""><span>1</span></li>
<li class="current"><span>2</span></li>
<li class=""><span>3</span></li>
</ul>

So I can add styling on specific element.

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants