gpt4 book ai didi

html - 选择具有来自 div 的额外顶部填充

转载 作者:太空宇宙 更新时间:2023-11-04 03:09:05 24 4
gpt4 key购买 nike

我想要一个带有自定义箭头的下拉菜单。
我在我的选择周围制作了一个带有箭头图像背景的 div 包装器。

问题是选择的 div 有 3-4 像素的顶部填充。而且我找不到原因。

<style>

.styleSelect select {
font-weight:bold;
-moz-appearance:none;
-webkit-appearance: none;
border:none;
width: 140px;
}

.styleSelect select::-ms-expand {
display: none;
}

.styleSelect {
width: 120px;
overflow: hidden;
background: url("/Images/dropdown_arrow.gif") no-repeat right #fff;
border: 1px solid #000;
float: right;
margin-left: 3px;
border-radius: 8px;
}

</style>

这是我的 html:

<form>
<div class="styleSelect">
<select></select>
</div>
</form>

最佳答案

你可以试试这个:对于此示例,我使用 50 像素的导航栏高度,但对于 50 像素,您可以使用自己的导航栏或父对象高度。

.styleSelect select{
line-height:50px;
height:50px;
/*and ofcourse your other code*/
}

这应该使对象垂直居中。您也可以尝试 vertical-align:middle;

关于html - 选择具有来自 div 的额外顶部填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29889691/

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