我有一个用普通HTML编写的普通选择下拉列表。我没有使用任何外部库来设置它的样式。它的下拉箭头显示在chrome,firefox和其他浏览器上。但是,它没有在Internet Explorer 11中显示。是否有人知道如何手动强制显示箭头?
<select name="inquiryType" class="dropdown-list" >
<option value="${listItem.apicode}">${listItem.title}</option>
</select>
CSS:
.dropdown-wrapper {
padding-bottom: 1rem;
.dropdown-list {
width: 100%;
height: 4.1rem;
padding: .65rem 1.5rem;
border-radius: .3rem;
font-size: 1.6rem;
font-weight: 300;
line-height: 1;
color: $color-black-mine-shaft;
background-color: $color-white;
border: 0.1rem solid $color-gray-nevada;
outline: none;
}
}