3

我试图让标签位于 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>

任何帮助深表感谢。谢谢

4

1 回答 1

4

在进行更多搜索和实验并使用 Firebug 之后,我发现 ui-select 是由 div 组成的。我可以通过添加将标签放在下拉列表的左侧:

display:inline-block; vertical-align:middle 

的样式属性ui-select

(无法发图)

于 2015-04-23T17:07:48.430 回答