webkit中input,textarea样式的设定

  1.聚焦高亮

  屏蔽聚焦高亮方法

  

屏蔽input聚焦高亮效果的样式:
input {outline: none;}
textarea {outline: none;}

  2.textarea的自动缩放

  屏蔽自动缩放

  

/*css2.0*/
textarea {width: 400px;max-width: 400px;height: 400px;max-height: 400px;}
/*css3.0*/
texearea {resize: none;}
原文地址:https://www.cnblogs.com/zzcflying/p/2546294.html