We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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
The text was updated successfully, but these errors were encountered:
Hi, I'm afraid that this particular case isn't implemented.
Sorry, something went wrong.
No branches or pull requests
The following code :
Will result in :
Could it be possible that it come out has :
So I can add styling on specific element.
Thanks
The text was updated successfully, but these errors were encountered: