1. 程式人生 > >HTML第三課

HTML第三課

行高 對齊方式 tex led textarea 選項 text res mage

表格

table 標簽

  • border
  • width
  • height
  • cellspacing 單元格之間的間隙 默認2
  • cellpadding 單元格和單元格內容之間的間隙 默認0
  • align
  • bgcolor
  • background

tr標簽 表示一行

  • align 行內文字的水平對齊方式 left/center/right
  • valign 行內文字的垂直對齊方式 top/middle/bottom
  • height 行高度
  • bgcolor

td標簽 表示單元格

  • align
  • valign
  • width
  • height

th標簽 表頭

屬性 同 td

thead標簽

tbody標簽

tfoot 標簽

caption標簽 定義表格標題

colgroup/col

表單

form標簽

  • action
  • method 值 get/post 默認get
  • target
  • enctype

input標簽 單

  • name 屬性
  • type 屬性
    • text 默認 文本框
    • password 密碼框
    • radio 單選框
    • checkbox 復選框
    • file 文件上傳
    • submit 提交按鈕
    • reset 重置按鈕
    • button 普通按鈕
    • image 把圖片作為提交按鈕樣子 不推薦
    • hidden 隱藏域
  • value屬性 默認值 type值不同vlaue的意義不一樣
  • size 屬性 控制輸入框寬度 適用於 text/password
  • maxlength 屬性 最大輸入字符個數 適用與text/password
  • checked 屬性 默認選中 適用於 radio/checkbox
  • readonly 只讀 適用於text/password
  • disabled 表示不可用

button元素

  • type屬性
    • submit(默認)
    • reset
    • button

select 標簽

  • name
  • size
  • multiple 設置多選
  • disabed

option 標簽

  • value
  • disabled
  • selected 默認選項

optgroup 對select下的option進行分組

textarea 文本域

  • name
  • disabled
  • rows 高度
  • cols 寬度
  • readonly

label

  • for 表單控件的ID

fieldset 表單的外框

legend 標題

HTML第三課