form 表单的基础知识

action    提交跳转地址

input    表单控件
    type = "text"      文本输入框
    type = "submit"    提交按钮
    type = "password"  密码框
    type = "radio"     单选框
    type = "checkbox"  复选框
    type = "reset"     重置按钮
    type = "button"    按钮
    value    input的值
    name     表单控件的数据名称,如果这条数据要提交就必须加
    
label     辅助 input, 点击label相当于点击了它要辅助的 input
select    下拉菜单
option    select的子项
textarea   文本域
button    按钮
块:    form / option
内联块: select / input / textarea / button
内联:  label


表单默认样式的清除:

form     => margin: 0; (IE6-7下有margin)
input    => margin:0; padding: 0; 根据设计图重置边框
button   => padding: 0; 
textarea => padding: 0; resize: none; overflow: auto;
input,button,textarea => outline: none;
select   => padding: 0; 根据设计图重置边框


TIPS:

checked :单选或者复选的默认选中
selected: 下拉菜单的默认选中
disabled: 禁止空间的编辑和提交功能
readonly: 设置控件为只读

label 的 for 属性,里面写的是label 要关联的 input的id
:focus 表单控件获得焦点的时候