a-select设置样式

//select输入框样式
.ant-select-selection {
  background: #2a2a2a;
  border: none;
  color: #fff;
}

//输入框右侧清除小叉号样式
.ant-select-selection__clear {
  background: #000;
  color: #fff;
}

//下拉列表样式
.anticon-down {
  color: #fff;
}

//设置select下拉框的下拉字体颜色
.ant-select-dropdown-menu-item {
  color: #fff !important;
}

//设置select下拉框的下拉item北京颜色
.ant-select-dropdown-menu-item:hover {
  background: #4d4d4d !important;
}

//下拉框中select选中的样式
.ant-select-dropdown-menu-item-selected {
  background: #6c6c6c !important;
}

//下拉框中什么都未选择时默认以一个item的样式
.ant-select-dropdown-menu-item-active {
  background: #4d4d4d !important;
}

你可能感兴趣的:(前端,html,javascript)