-
-
Notifications
You must be signed in to change notification settings - Fork 101
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Dropdown menus / button list #29
Comments
Here is a simple button dropdown sample: PreviewCode<details class=dropdown>
<summary class=button>action</summary>
<div class=card>
<p><a href="#">delete</a></p>
<p><a href="#">rename</a></p>
<p><a href="#">copy</a></p>
</div>
</details> details.dropdown {
position: relative;
display: inline-block;
}
details.dropdown > :last-child {
position: absolute;
left: 0;
background: white;
white-space: nowrap;
} Live demo |
@Jogai If a dropdown button is what you were you looking for, I can merge request it so we could close this ticket |
Yeah, seems useful. The project I was using it for was on hold for a while, but just this week I discussed finalizing it so its right on time. |
Ships in v0.7.0 |
This project could benefit from a dropdown component like this I think: https://codepen.io/connorbrassington/pen/raNrEW (not mine, just a random example I found).
The text was updated successfully, but these errors were encountered: