CSS无法在mozilla firefox版本29 beta 7中运行

时间:2014-04-14 12:30:17

标签: html css

我在使用以下代码在mozilla firefox中工作时遇到问题。我使用的是版本29 beta 7。 以下css在firefox中不起作用,但在chrome中工作得非常好。我无法找到的原因是什么?请帮忙。

CSS代码:

input[type="file"] {
  border: 1px solid #333;
  box-sizing: border-box;
  display: inline-block;
  font-size: 14px;
  margin: 0;
  padding: 8px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  width: 100%;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  z-index: 1;
}
input[type="file"]:after { /* Mask the no file chosen label */
  background-color: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

input[type="file"]::-webkit-file-upload-button { /* Style the button */
  background: #fff;
  color: #555;
  font: inherit;
  padding: 0;
  position: relative;
  border: none;
  text-align: left;
  position: relative;
  z-index: 100;
  -webkit-appearance: none;
}

HTML:我正在应用上面的CSS:

<input type="file">

请帮忙。

0 个答案:

没有答案