How can I create an expandable menu with only HTML5 and CSS3?
I want to display only 4 menu items and a view all list item, where clicking view all should expand all of the list items.
How can I create an expandable menu with only HTML5 and CSS3?
I want to display only 4 menu items and a view all list item, where clicking view all should expand all of the list items.
You can check this out: http://thinkphp.github.com/cuba.js/accordion.html source: https://github.com/thinkphp/cuba.js cheers!
There are several ways to make it! For example the following. The HTML looks like this. There is a div, that you click and a div underneath that will expand. This is only possible with the pseudo-selector :target.
I made a working Fiddle for you. Have a look at it: Check me out!