禁用webkit textarea可調整大小和文本框焦點時邊框

1. 取消拖動調整大小 

  /*css2.0*/
    textarea {width: 400px;max-width: 400px;height: 400px;max-height: 400px;}
    /*css3.0*/
    texearea {resize: none;}



2. 聚焦時邊框顏色不變

input {outline: none;}
textarea {outline: none;}

3.限制input輸入字數
<input type="tel" name="authCode" maxlength="6" placeholder="6位數字"/>
相關文章
相關標籤/搜索