我试图让标签位于 angular-ui-select 下拉列表的左侧,但无论我尝试什么,它都会一直出现在标签下方。我最近拉下了最新的 angular-ui-select。我正在使用选择主题,但引导主题也发生了同样的事情。
我在我的 HTML 中做错了吗?我只是没看到。
这是我的 HTML 正文:
<body>
<div ng-controller="MainCtrl">
<div id="acct">
<label for="acctList">Account:</label>
<ui-select id="acctList" ng-model="acctList.selected" style="width: 250px;" theme="selectize" ng-disabled="disabled" title="Choose an account">
<ui-select-match placeholder="Select or search an account in the list...">{{$select.selected.name}}</ui-select-match>
<ui-select-choices repeat="account in acctList | filter: $select.search">
<span ng-bind-html="account.name | highlight: $select.search"></span>
</ui-select-choices>
</ui-select>
</div>
</div>
</body>
任何帮助深表感谢。谢谢