HTML
<input type="text" autocapitalize="off"/>
body class="" onmousemove="" ontouchstart=""
meta
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width,
initial-scale=1.0,
minimum-scale=1.0,
maximum-scale=1.0,
user-scalable=no"/>"
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="format-detection"
content="telephone=no, email=no,date=no,address=no"/>
<meta http-equiv="X-UA-Compatible" content="IE=Edge, chrome=1">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<meta name="msapplication-tap-highlight" content="no">
CSS
input[type=search]::-webkit-search-cancel-button{
-webkit-appearance: none; //此处只是去掉默认的小×
}
::-webkit-search-cancel-button {
display:none;
}
input[type="search"]{-webkit-appearance:none;}
input[type=search]::-webkit-input-placeholder{
color: blue;
}
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
[contenteditable=true], input, textarea {
-webkit-touch-callout: auto !important;
-webkit-user-select: auto !important;
-khtml-user-select: auto !important;
-moz-user-select: auto !important;
-ms-user-select: auto !important;
user-select: auto !important
}
-webkit-tap-highlight-color: transparent;
-webkit-tap-highlight-color: transparent;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
border: 0;
outline: 0;
input::-webkit-input-placeholder{color:#AAAAAA;}
input:focus::-webkit-input-placeholder{color:#EEEEEE;}
(@media screen and (max-width: 330px) and (min-width: 311px) {}