Dropdowns
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | < div class = "dropdown dropdown open drop-demo" > < button class = "btn dropdown-toggle sr-only" type = "button" id = "dropdownMenu3" > Dropdown < span class = "caret" ></ span > </ button > < ul class = "dropdown-menu" role = "menu" aria-labelledby = "dropdownMenu3" > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Action</ a ></ li > < li role = "presentation" class = "dropdown-header" >Dropdown header</ li > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Another action</ a ></ li > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Something else here</ a ></ li > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Something else here</ a ></ li > < li role = "presentation" class = "divider" ></ li > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Separated link</ a ></ li > </ ul > </ div > < div class = "dropdown dropdown-inverse open drop-demo" > < button class = "btn dropdown-toggle sr-only" type = "button" id = "dropdownMenu3" > Dropdown < span class = "caret" ></ span > </ button > < ul class = "dropdown-menu" role = "menu" aria-labelledby = "dropdownMenu3" > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Action</ a ></ li > < li role = "presentation" class = "dropdown-header" >Dropdown header</ li > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Another action</ a ></ li > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Something else here</ a ></ li > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Something else here</ a ></ li > < li role = "presentation" class = "divider" ></ li > < li role = "presentation" >< a role = "menuitem" tabindex = "-1" href = "#" >Separated link</ a ></ li > </ ul > </ div > |