使用 liferay 中的 alloy ui 在 IE 11 中隐藏 select 下拉菜单
Hide select dropdown in IE 11 with alloy ui in liferay
我将 liferay 6.2 与 alloy ui 一起使用,并且我试图从 IEE 11 中的 select 下拉列表中隐藏箭头:
select::-ms-expand {
display: none !important;
}
我也试过了
.aui select::-ms-expand {
display: none !important;
}
但是我检查了资源,我在 CSS 中看到了样式,但是当我检查 select 元素时,样式不存在。
问题是 liferay 配置为在 IEE9 上启动 portlet,而我尝试的代码仅受 IEE10 支持。
我将 liferay 6.2 与 alloy ui 一起使用,并且我试图从 IEE 11 中的 select 下拉列表中隐藏箭头:
select::-ms-expand {
display: none !important;
}
我也试过了
.aui select::-ms-expand {
display: none !important;
}
但是我检查了资源,我在 CSS 中看到了样式,但是当我检查 select 元素时,样式不存在。
问题是 liferay 配置为在 IEE9 上启动 portlet,而我尝试的代码仅受 IEE10 支持。