Home > Mobile >  Expand the select List: Bootstrap
Expand the select List: Bootstrap

Time:12-21

Requirement: Display the select list underneath both textboxes on key press.

Code: enter image description here

Not Working for the 2nd box enter image description here

CodePudding user response:

Based on the code you sent as an example, style it like this:

.dropdown-menu {
  width: 200% !important;
}

.dropdown-menu#basic-example2{
  right: 0 !important;
  left: unset !important;
}

  • Related