zoukankan      html  css  js  c++  java
  • html中的表格标签

    表格标签:table tr td th caption

    table:表格

    <table></table>
    

      属性:border(边框)、width(宽度:默认宽度为内容宽度)、cellpadding(边距、单元格内内容与单元格的距离)、cellspacing(单元格与单元格的距离)

    tr:行

          属性:width(宽度)、heighth(高度)、align(对齐方式)

    td:行

          属性:width(宽度)、heighth(高度)、align(对齐方式)

                   合并单元格:1、横向合并:属性为cospan(向右合并)属性值包含自身:2、3....

                                        2、垂直合并:属性为rowspan(向下合并)属性值包含自身:2、3....

    th:表头

    caption:表格标题(与tr同级)

  • 相关阅读:
    设计模式之中介者模式
    解释器模式(行为模式)
    进程池Pool
    Process子类
    multiprocessing
    random
    re
    time和datetime
    logging 日志
    hashlib
  • 原文地址:https://www.cnblogs.com/-dashu/p/9134313.html
Copyright © 2011-2022 走看看