1、css去掉iPhone、iPad默认按钮样式
nput[type="button"], input[type="submit"], input[type="reset"] { -webkit-appearance: none; }
textarea { -webkit-appearance: none;}
如果还有圆角的问题:
.button{ border-radius: 0; }
2、去除Chrome等浏览器文本框默认发光边框
input:focus, textarea:focus {
outline
:
none
;
}
去掉高光样式:
input:focus { -webkit-tap-highlight-color:rgba(0,0,0,0); -webkit-user-modify:read-write-plaintext-only;}
当然这样以来,当文本框载入焦点时,所有浏览器下的文本框的边框都不会有颜色上及样式上的变化了,但我们可以重新根据自己的需要设置一下,如:
input:focus,textarea:focus {
outline
:
none
;
border
:
1px
solid
#f60
;
}
3、去除IE10+浏览器文本框后面的小叉叉:
input::-ms-clear {
display
:
none
; }
4、禁止多行文本框textarea拖拽
textarea {
resize:
none
;}
none 默认值
both 允许水平方向及垂直方向缩放
horizontal 只允许水平方向缩放
vertical 只允许垂直方向缩放
不仅可以针对textarea元素,对大多数元素都适用,如div等,在这里不一一列举,但与textarea不同的是,对div使用时需要加上一句overflow: auto;,也就是这样才有效果:
div {
resize:
both
;
overflow
:
auto
;}