ngx-select-dropdown的宽度不能使用table



我正在使用表格,而ngx-select-dropdown的大小太小了?我试过css,但它不工作

这是我的代码在html

<td>
<ngx-select-dropdown 
class="ngx-select-dropdown"
[config]="employeConfig"
[options]="responseDS"
name="officeDesc">
</ngx-select-dropdown>
</td>

这是我的css

ngx-select-dropdown, .ngx-dropdown-button {
max-width: 220px;
}
}

组件

this.employeConfig = {
displayKey: 'officeDesc',
placeholder: '',
limitTo: this._Obj.length,
moreText: 'officeDesc',
noResultsFound: 'No results found',
searchPlaceholder: 'Search',
}

dropdowntd的下拉列表中显示。

.dropdown {
min-width: 200px;
max-width: 300px;
}

最新更新