css – AngularJS:可滚动的预输入字段

前端之家收集整理的这篇文章主要介绍了css – AngularJS:可滚动的预输入字段前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的 HTML
<div class="form-group">
    <label class='control-label col-md-4' for='id_paymentCurrency'>{{'PAYMENT_CURRENCY' | translate}}</label>
    <div class='col-md-4'> 
        <div id="scrollable-dropdown-menu">
        <input type="text" class="form-control" data-trim-value="false" ng-trim="false" id ='id_paymentCurrency' ng-model="vm.data.paymentCurrency"  typeahead-append-to-body="true" required
        typeahead-editable="false"
        uib-typeahead="currency.code for currency in vm.getCurrencies($viewValue)"ng-disabled="disabled" />
    </div>   
  </div>  
</div>

我的CSS

#scrollable-dropdown-menu .tt-menu {
   max-height: 150px;
   overflow-y: auto;
 }

我正在使用angular-x和带有angular-bootsrap的typeahead,我无法使滚动条出现.

http://fiddle.jshell.net/H7LA4/46/

解决方法

问题出在您的选择器上.试试这个:
#scrollable-dropdown-menu .dropdown-menu {
    max-height: 150px;
    overflow-y: auto;
}

您可以在此fiddle中检查它是否按预期工作

原文链接:https://www.f2er.com/css/214457.html

猜你在找的CSS相关文章