gpt4 book ai didi

css - Firefox 和 Internet Explorer 中下拉菜单的 UI 问题

转载 作者:行者123 更新时间:2023-11-28 03:13:06 25 4
gpt4 key购买 nike

我创建了一个下拉列表作为

<div class="col-lg-2 header-dropdown">
<select (change)="onProjectChange($event.target.value)">
<option *ngFor="let project of projectNameList" [value]="project.name" [selected]="project.selected">{{project.name}}</option>
</select>
</div>

我的下拉菜单在 chrome 中看起来像这样

在Firefox和Internet Explorer中是这样的

enter image description here

一些白色背景出现在箭头中,如何解决这个问题?

最佳答案

那是因为你不用这个,

select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

select::-ms-expand { display: none; } /*For IE */

关于css - Firefox 和 Internet Explorer 中下拉菜单的 UI 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45606606/

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