Is it possible to hide Bootstrap\'s .dropdown-backdrop element for a certain dropdown (not all on the page) by using CSS only?
I\'ve determined that this is possible
Found solution: .dropdown-backdrop is a descendant of its .dropdown, which can have a unique ID, so simply using display:none; in CSS works fine, as in:
#firstDropdown .dropdown-backdrop {
display:none;
}
And then all other dropdowns (except #firstDropdown) will still have a backdrop as normal.
See JSFiddle updated.