RTL for angularjs bootstrap's typeahead

2019-09-07 03:20发布

问题:

As can be seen below, the completion list is on the left when I want it to be on the right. How can I do that?

here is my work

回答1:

you have to override bootstrap's.dropdown-menu class in your style file as follow :

.dropdown-menu{
    float:right !important;
    position:inherit !important;
  } 

Demo