7.26学习内容

表格

  表格标签<table><tr><td></td> </tr></table>

  <tr>标签标示行

  <td>标示单元格

  table属性border表示边框

  table属性width 表示表格宽度

  table属性height表示表格高度

  table属性cellpadding表示表格边与内容的距离

  table属性cellspacing表示表格边与边的距离

  td属性colspan表示单元格跨列

  td属性rowspan表示单元格跨行

form表单

   <input type=“text”/> <!– 可编辑文本域 -->

  <input type=“password”/> <!– 密码框 -->

  <input type=“checkbox”/> <!– 多选框 -->

  <input type=“radio”/> <!– 单选框 -->

  <input type=“button”/> <!– 按钮 -->

  <input type=“file”/> <!– 文件浏览 -->

<textarea cols=“50” rows=“4”> </textarea> <!– 文本域-->

<select> <option></option></select> <!– 下拉控件-->

原文地址:https://www.cnblogs.com/ne709/p/9373012.html