RTL for angularjs bootstrap's typeahead

余生长醉 提交于 2019-12-13 21:04:36

问题


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



来源:https://stackoverflow.com/questions/27755499/rtl-for-angularjs-bootstraps-typeahead

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!