我对select标签使用了以下css:

select {
  background-color: transparent;
  border: 1px solid #A96800;
  color: #fff;
  font-family: "Verdana","Lucida Fax","Lucida Grande","Lucida Sans   Unicode",Arial,sans-serif;
  font-size: 10pt;
  height: 21px;
  margin-bottom: 5px;
  padding-left: 3px;
  width: 260px;
}


此CSS也影响文本。

最佳答案

您无法看到这些选项,因为在CSS中,您正在将文本的颜色设置为白色。

color: #fff;


只需删除上面的行,使您的css看起来像:

select {
  background-color: transparent;
  border: 1px solid #A96800;
  font-family: "Verdana","Lucida Fax","Lucida Grande","Lucida Sans   Unicode",Arial,sans-serif;
  font-size: 10pt;
  height: 21px;
  margin-bottom: 5px;
  padding-left: 3px;
  width: 260px;
}


现在,您也可以查看您的选项。

这是更新的小提琴:http://jsfiddle.net/UJMkN/1/

希望这可以帮助。

关于css - 选择标签问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8571414/

10-11 09:16