gpt4 book ai didi

html - 添加图标字体以供选择

转载 作者:太空宇宙 更新时间:2023-11-04 11:39:39 26 4
gpt4 key购买 nike

我在使用自定义字体图标进行选择时遇到问题,请查看此屏幕截图的外观

enter image description here

这里的问题是我无法在单击该箭头时打开选项下拉菜单,因为它是在选择上,如果我添加 z-index: -1 箭头在选择下方,但我需要在该选择上方的箭头。

这是我当前的代码。

HTML

<li class="dropdown">
<select name="font" id="font" placeholder="&#xe61d;">
<option value="Arial">Arial</option>
<option value="Times New Roman">Times New Roman</option>
<option value="Georgia">Georgia</option>
</select>
</li>

CSS/萨斯

select {
@include border(0px);
padding: 7px 0;
position: relative;
top: -2px;
outline: none;
appearance: none;
-webkit-appearance: none;
}
&.dropdown {
&:after {
content: "\e61d";
font-family: 'icomoon';
color: black;
@include abs-pos(0, 0);
}
}

最佳答案

我假设你的问题是点击自定义箭头时 select 的点击事件没有触发。

尝试将此样式添加到您的箭头(我假设它是 :after 元素,因为我不熟悉 SASS)

pointer-events: none;

这将允许您点击下方的元素,在本例中为 select

关于html - 添加图标字体以供选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31449016/

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