应用了一些 CSS 后,我的选择字段看起来很奇怪。我将我的 CSS 应用于三个组件:
cls: 'txtwhite',
labelCls: 'txtwhite',
inputCls: 'sfborder'
我的三个 CSS 类是:
.txtwhite {
font-family:Arial;
color:white;
font-size:15px;
background: #000000;
}
.txtinput {
font-family:Arial;
color:white;
font-size:15px;
background: #000000;
border-color: #6E6E6E;
border-style:solid;
border-width:2px;
}
.sfborder {
font-family:Arial;
color:white;
font-size:15px;
background: #000000;
border-color: #0B4C5F;
border-style:solid;
border-width:1px;
border-radius:10px;
}
我的选择框位于选择字段的标签下方。在选择框的右侧,我看到一个白色的向下箭头(这是从下拉列表中选择内容的箭头)。
我的问题是:为什么那个箭头的颜色和它周围的一些区域是白色的?