1
0
mirror of https://github.com/phuoc-ng/csslayout.git synced 2025-08-26 23:35:08 +02:00

Add dropdown

This commit is contained in:
Phuoc Nguyen
2019-11-29 11:22:56 +07:00
parent 86eb00f7da
commit d464c54992
7 changed files with 236 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
.dropdown-content {
display: none;
}
.dropdown:hover .dropdown-content {
display: block;
}