select下拉框高度设置
时间: 2023-08-07 10:06:39 浏览: 222
jQuery Select下拉框美化代码.zip
你可以使用 CSS 中的 height 属性来设置 select 元素下拉框的高度。例如:
```css
select {
height: 30px; /* 设置下拉框高度为 30px */
}
```
但是需要注意的是,有些浏览器会忽略 height 属性,而只根据 option 元素的高度来确定下拉框的高度。因此,你可能需要通过设置 option 元素的高度来调整下拉框的高度。例如:
```css
select {
height: 30px; /* 设置 select 元素高度为 30px */
}
/* 设置 option 元素高度为 30px */
select option {
height: 30px;
}
```
这样就可以确保下拉框的高度被正确设置了。
阅读全文