去掉苹果中的button的默认圆角

来源:互联网 发布:哪里获得省市县的数据 编辑:程序博客网 时间:2024/05/22 08:17
.startbutton {    color: #FFF;    width: 60%;    margin:0 auto;    background: #80002a;    height: 30px;    -webkit-border-radius: 6px;    -moz-border-radius: 6px;    border-radius: 6px;    border:none;    -webkit-appearance : none ;}

圆角问题主要是最后一个属性

-webkit-appearance : none ;
加上这个就ok 了

0 0
原创粉丝点击