html 表格

#1、格式
<table>
    <tr>
        <td></td>
    </tr>
</table>
border 边框
bgcolor背景颜色
width 宽度
height 高度
px 向后的意思
cellspacing 单元格间距

表格常用属性:

  • border,为表格添加边框:style=”border-collapse: collapse”
  • width,表格的宽
  • height,表格的高
  • align,水平居中
  • valign,垂直居中
  • colspan,设置单元格水平合并
  • rowspan,设置单元格垂直合并
  • style="border-collapse: collapse" 表格合并虚线


猜你喜欢

转载自www.cnblogs.com/seanliang/p/9082247.html