Latest solutions
Responsive Grid Testimonial Website with Bootstrap and Sass
#accessibilitySubmitted about 3 years ago
Latest comments
- @Jemi-code@Jemi-code
Thanks! I'll definitely look into this
- @asaganda@Jemi-code
Yes, there is a simpler way of doing it using just html. There is a tag called details tag(<details>) which helps to create drop down menus without having to code JS. I did this same challenge, is this is how I did my HTML.
<details> <summary>Features</summary> <ul class="feat-list"> <li class = "todo">Todo List</li> <li class = "cal">Calender</li> <li class = "rem">Reminders</li> <li class = "plan">Planning</li> </ul> </details>For the div menu close issue, try putting it outside the list but still within the nav and set the position to absolute
- @Jemi-code@Jemi-code
Thanks a lot, I saw the issues but didn't know how to correct it.