0

我正在使用 twitter-bootstrap typeahead 从服务器获取数据并将其显示为用户类型。

问题是我的网站是 RTL,这使得结果框不对齐。

在 chrome 上,结果框与最右侧对齐,而在 FF 上,它显示在输入的左侧。

我试图寻找它,但似乎没有解决方案有效。

这是 twitter-bootstrap 应用的硬编码样式:

<ul class="typeahead dropdown-menu dropdown-fixed" style="top: 191px; left: 849px; display: none;">

任何想法如何正确对齐它?10倍

4

1 回答 1

0

我通过删除左属性使其工作:

this.$menu.insertAfter(this.$element).css({top:b.top+b.height,left:b.left}).show(),this.shown=!0,this}

并为下拉菜单使用固定的正确位置。

于 2013-03-21T08:10:00.147 回答