css 适配ios Android中的input

input{
  -webkit-tap-highlight-color:transparent;/**ios下面input选中会出现短暂的阴影**/
  outline: none;/**清楚input在Android机上面点击会出现的高亮**/
  border: none;
  -webkit-appearance: none; 
  background-color: none;border-radius: 0;
}
text-transform: lowercase;//将文字转换成大写(uppercase) 小写(lowercase) 以大写字母开头(capitalize)

    

pre{/*数字、汉字的换行 white-space: pre-wrap;只能让汉字换行 数字不行*/ 换行
    white-space: pre-wrap;
    word-break: break-all;
}

  

posted @ 2017-11-30 16:19  胖娘子_bug  阅读(536)  评论(0编辑  收藏  举报