设置ng-multiselect-Dropdown的宽度

2022-02-27 00:00:00 css angular6

我使用ng-multiselect-dropdown。我想把它的宽度设为100磅。

我已经尝试使用一些CSS

.multiselect-dropdown {
    widht:100pt;
}
.multiselect-dropdown .dropdown-btn {
    widht:100pt;
}

解决方案

我定义了自定义类并给出了宽度。但要注意的是!重要应用程序。它将覆盖ng-multiselect的现有CSS,其中width定义为100%。

CSS

.custom-font-size .multiselect-dropdown .dropdown-btn {
    width: 100pt !important; 
}

HTML

<ng-multiselect-dropdown #reporteedropDown class="custom-font-size....">
</ng-multiselect-dropdown>

相关文章