玩命加载中 . . .

Table标签(01)


第1节:Table标签

格式

    <table width="100%" height="100px" cellpadding="10px" cellspacing="15px" border="1px" bgcolor="white" bordercolor="blue">
        <caption>表格标题</caption>
        <tr aria-rowcount="1">
            <th colspan="2" bgcolor="aqua">合并2行</th>
            <th rowspan="2" bgcolor="#ccc">合并2列</th>
            <th>1</th>
            <th>1</th>
        </tr>
        <tr>
            <td>1</td>
            <td>1</td>
            <td>1</td>
            <td>1</td>
        </tr>
    </table>

table标签属性:

  • width:长度
  • height:高度
  • cellspacing:规定单元边沿与单元内容之间的空间,用以像素(px)或百分比(%)
  • cellpadding:规定单元边沿与其内容之间的空白,用以像素(px)或百分比(%)
  • border:边框
  • bordercolor:边框颜色
  • bgcolor:规定表格单元格的背景颜色
  • **colspan**:合并行,输入值:合并几行
  • **rowspan**:合并列,输入值:合并几列

table的子集标签:

  • caption:表格标题
  • th:表头 (表头与列不同的是表头文字自动加粗文字居中)
  • tr:行
  • td:列

待补充...


文章作者: 小靳同学
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 小靳同学 !
评论
 上一篇
实例语句块成员内部类(09) 实例语句块成员内部类(09)
实例语句块成员内部类实例语句块内容 语法格式: // 这个放在类中 { System.out.println("1"
2021-06-08
下一篇 
Table总结 Table总结
第2节:Table总结Table标签属性总结: <tr>不能设置width,但是可以设置height 如果一行中每个<td
2021-06-08
  目录