考虑下面的html。
<select text="Choose any one">
<option>Germany</option>
<option>France</option>
<option>US</option>
<option>UK</option>
<option>India</option>
</select>
我想为每个下拉行提供20px的高度。所以应用了以下css。
option{
height:20px;
}
这在firefox中完美运行。但不是铬。有谁能建议解决这个问题?还试图为奇数行和偶数行提供高度。但是没有使用chrome。