I'm currently developing an app that is utilizing AngularJS and Bootstrap, with the assistance of Bootstrap UI. Specifically, I am working on implementing the typeahead feature. However, I am facing a challenge in trying to ensure that the dropdown list, which appears below the text box, maintains the same width as the text box itself. Despite my attempts, the size keeps changing unpredictably. To address this issue, I have experimented with the following CSS code without success:
Currently, the snippet I have so far does not achieve the desired outcome:
.dropdown-menu {
width:75%;
}
If anyone can provide guidance on how to synchronize the width of the suggestion list with that of the text box, it would be greatly appreciated!
Thank you for your help!