随机CSS行为

时间:2015-01-15 16:14:39

标签: css css3 webkit

我正在创建一个使用酷炫CSS3按钮的应用程序。 这个问题只在Android浏览器上发生,但由于它是手机的Web应用程序,这个图形问题非常重要...... 发生的事情是按钮有时会正确显示,有时会以一种奇怪的方式显示,如下图所示:

enter image description here



button {
  font-size: 1.2em;
  height: 2.5em;
  border-width: 0px;
  font-weight: bold;
  cursor: pointer;
  margin: 0px;
  padding-left: 1em;
  padding-right: 1em;
  -moz-box-shadow: inset 0px 1px 3px 0px #696969;
  -webkit-box-shadow: inset 0px 1px 3px 0px #696969;
  box-shadow: inset 0px 1px 3px 0px #696969;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #4e4e4e), color-stop(1, #2c2c2c));
  background: -moz-linear-gradient(top, #4e4e4e 5%, #2c2c2c 100%);
  background: -webkit-linear-gradient(top, #4e4e4e 5%, #2c2c2c 100%);
  background: -o-linear-gradient(top, #4e4e4e 5%, #2c2c2c 100%);
  background: -ms-linear-gradient(top, #4e4e4e 5%, #2c2c2c 100%);
  background: linear-gradient(to bottom, #4e4e4e 5%, #2c2c2c 100%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#4e4e4e', endColorstr='#2c2c2c', GradientType=0);
  background-color: #4e4e4e;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #474747;
  display: inline-block;
  cursor: pointer;
  color: #ffffff;
  font-family: arial;
  font-size: 1.5em;
  font-weight: bold;
  padding: 0em 1em;
  text-decoration: none;
  text-shadow: 0px -1px 0px #000000;
}

<button>Log-in</button>
<br />
<button>Email registration</button>
&#13;
&#13;
&#13;

我无法理解发生这种情况的原因!你有什么想法吗?

0 个答案:

没有答案