HTML学习之表格属性

表格的基本元素<table></table>  <tr>定义行标签</tr>   <td>定义列标签</td>  <th>表格内的表头单元格</th>

<thead>定义在thead下的标签不论在HTML代码中你放置在什么位置都会以表头形式显示</thead>

同理 <tbody></tbody>   以及<tfoot></tfoot>。 分别表示,表体,表脚。

<caption>表的标题</caption>

<colgroup>用来设置列的属性</colgroup>  通过style 中的background:white等来设置颜色。通过span 来设置显示哪一列或多列,通过<col>来占用一个占列符。

例:

<table border=1>

    <tr>

        <td>张三</td>

        <td>李四</td>

        <td>王五</td>

    </tr>

<thead>

<tr>

        <th>张三</th>

        <th>李四</th>

        <th>王五</th>

    </tr>

</thead>

<tr>

        <td>张三</td>

        <td>李四</td>

        <td>王五</td>

    </tr>

</table>


4、常见的块状元素

  • div  -  块

  • p  -  段落

  • h1 ~ h6  -  大标题

  • table , form  -  表格,表单

  • ul , ol  - 非排序列表,排序表单

  • hr  -  水平分割线


5、常见的内联元素

  • a   -  锚点

  • span  -  内联块

  • br  -  换行

  • input  -  输入框

  • img  -  图片

  • select  -  项目选址

  • textarea  -  多行文本输入框



你可能感兴趣的:(style,标签,background,元素,White)