表格

table标签

  • border(一般设为1)
  • width
  • height
  • cellspacing 单元格之间的间隙 默认2(通常设为0)
  • cellpadding 单元格与单元格内容之间的间隙 默认为0
  • align
  • bgcolor 设置背景颜色
  • background 设置背景图像

tr标签 表示一行

  • align 行内文字的水平方式
  • valign 行内文字的垂直对齐方式 top/middle/bottom
  • height 行高度
  • bgcolor

td标签 表示单元格

*align *valign *width *height

th标签 表头

属性同td

thead标签

tbody标签

tfoot标签

caption标签/col

表单

form标签

  • action
  • method 值 get/post 默认get
  • target
  • enctype *### input标签 单
  • name属性
  • type属性
    • text 默认 文本框
    • password 密框
    • radio 单选框
    • checkbox 复选框
    • file 文件上传
    • submit 提交按钮
    • reset重置按钮
    • button普通按钮
    • image 把图片作为提交按钮的样子 不推荐
    • hidden 隐藏域
  • value属性 默认值
  • size属性 控制输入框的宽度 适用于text/password
  • disabled 表示不可用

button 元素

  • type属性
    • submit(默认)
    • reset
    • button

select标签

  • name
  • size
  • multiple 设置多选
  • disabled

option标签

  • value
  • disabled
  • selected 默认选项

optgroup 对select下的option进行分组

textarea 文本域

  • name
  • disabled
  • rows 高度
  • readonly

label

  • for 表单控件的ID

fieldset 表单的外框

legend 标题

posted on 2017-07-25 20:59  半个句号  阅读(129)  评论(0编辑  收藏  举报