1、高亮外框的取消
input {
outline: none;
}
textarea {
outline: none;
}
如上,使用CSS的outline就可以实现
2、文本域缩放功能的取消
也是使用CSS,具体有两种方法
textarea {
width: 400px;
max-width: 400px;
height: 400px;
max-height: 400px;
上面是限定最大宽度和高度(CSS2),这也是最容易想到的方法了
texearea {
resize: none;
}
需要注意,这个方法中的resize是CSS3中的语法
原文:http://www.cnblogs.com/joeylee/p/3782386.html