gpt4 book ai didi

html - 使用angular修改css类属性

转载 作者:太空宇宙 更新时间:2023-11-04 02:20:35 25 4
gpt4 key购买 nike

我有一个 css 类“建议列表”,其中我有 height: initial; 在我的 angularjs 代码中,我想更改 height: inherit;我如何使用 angular 修改这个 css 类?

在我的 CSS 文件中我有:

.suggestions-list {
position: absolute;
list-style-type: none;
margin: 0 0 0 35px;
padding: 0;
overflow: scroll;
height: initial;
width: 250px;
border-bottom: 50px;
}

这是我的 HTML:

<ul class="suggestions-list" ng-show="myVar">
<li ng-repeat="suggestion in suggestions track by $index" ng-class="{active : selectedIndex === $index}" ng-click="AssignValueAndHide($index)">{{suggestion}}</li>
</ul>

最佳答案

使用ng-style

<div ng-style="{height: (condition?'initial':'inherit')}"></div>

关于html - 使用angular修改css类属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38184311/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com