<input type = "button">和<button></button>的区别
1.<input type = "button"> 表示就是一个普通的button
2.<button>按钮</button> 写在form里面会自动升级为提交按钮
<input type = "radio">【此方法适合radio、checkbox】
有的时候会发生点击单选框或者复选框的时候需要点击旁边的文字也能够选中,可以用下面两个方法实现
1.<label>用户名<input type = "radio"></label>
2.<label for = "xxx">用户名</label></input type = "radio" id = "xxx">【必须用id才行】
resize:none
<textarea resize:none></textarea> textarea就不能伸缩