##表格
###table标签
border
width
height
cellpadding 单元格和单元格之间内容的间隙 默认0
cellspacing 单元格之间的间隙 默认2
align
bgcolor
background

###tr标签  行
height 行高度
aling  水平对齐方式
valing 垂直对齐方式
bgcolor

###td标签  单元格
width 单元格宽度
aling
valing
height

###th标签  表头
属性同td

### thead标签
### tbody标签
### tfoot 标签
### caption 定义表格标题
### colgroup/col

##表单
###from标签
action
method get/post  默认get
target
enctype

###input标签 单
*name 必须有 数据传输
    type: text 默认 文本框
          password 密码框
          radio  单选框
          checkbox 复选框
          file  文件上传
          p_w_picpaths 图片 提交
          submit 提交
          reset  重置
          button 按钮 无意义
          hidden 隐藏域
value 默认 
size  输入框的宽度 适用text/password
maxlength  属性  最大输入字符个数  适用与text/password
checked  属性 默认选中  适用于 radio/checkbox
readonly  只读  适用于text/password
disabled  表示不可用  

###button
submit 提交(默认)
resst 重置
button 

### option 标签
value
disabled
selected  默认选项        

###select
name
size
multiple  设置多选
disabed

### optgroup  对select下的option进行分组
### textarea  文本域
name
disabled
rows  高度
cols   宽度
readonly

### label  
for   表单控件的ID

### fieldset 表单的外框
### legend  标题