Is there any way to create a horizontal submenu for a vertical menu structure using bootstrap I haven't seen any submenus with vertical main menu orientation. A sample structure of the menu structure is similar to this
相关问题
- Adding a timeout to a render function in ReactJS
-
Why does the box-shadow property not apply to a
- Add animation to jQuery function Interval
- jQuery hover to slide?
- Issue with star rating css
This could be helpful for you. can be found here
HTML:
CSS:
JS:
Here we go!
Dropdown menus work with nested "ul", absolute positions and we will change from
display: none;
todisplay:block;
when needed with hovers.Something like this:
Your example's html
Your explame's SCSS: (I used sass because it's easier to read and write but i will also paste CSS below)
A live example: https://jsfiddle.net/xwazzo/3spxxk1z/
And the promised CSS version: