移动端ios上默认渲染按钮问题

移动端ios会将按钮渲染为默认样式。添加样式-webkit-appearance:none;可解决

如:

代码:

.submit{
  height: .84rem;
  line-height: .84rem;
  width:18.5%;
  border-bottom-right-radius: .1rem;
  border-top-right-radius: .1rem;
  background-color: #00a3dc;
  color: #fff;
  outline: none;
  float: left;
  border-top: .02rem solid #a0a0a0;
  border-bottom: .02rem solid #a0a0a0;
  font-size: .3rem;
  appearance: none;
  -webkit-appearance: none;
}

 ios及安卓移动端样式如下:

 

posted @ 2017-06-15 09:40  阿熊走江湖  阅读(215)  评论(0)    收藏  举报