博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
课堂随笔3月8日下午
阅读量:4949 次
发布时间:2019-06-11

本文共 710 字,大约阅读时间需要 2 分钟。

<table>表格

  <tr><!--行-->
    <td><!--列--></td>
    <td><!--列--></td>
    <td><!--列--></td>
  </tr>
</table>
百分比可以对任何网站 浏览器使用
<align="center">表格居中
top 上
bottom 下
middle 中
left 左
center 中
right 右
  <th>   </th> 表格标题 加粗加居中
  <width> 宽度
  <border> 边框
  <bgcolor> 背景色
  <background> 背景图片
  <td>  </td> 单元格
  <th>  </th>表头
  <colspan="n"> 合并同一行单元格(后面写的代码要减去相对应的列)
  <rowspan="n"> 合并同一列单元格(从第二行开始减去相对应的列)
内容必须放在单元格里,单元格必须放在行里,行必须放在表格里,设置单元格
行高,列高时,会同时影响对应的行或列
<table>
  <tr>
    <th>
    垂直并加粗
    </th>
  </tr>
</table>
<table>
    <tr>
        <thead>
         表头(head是头,所以thead就是表的最顶层。)
        </thead>
    </tr>
</table>
<table>
    <tr>
        <thead>
            表尾(foot是脚,所以tfoot就是表的最底层。)
        </thead>
    </tr>
</table>

转载于:https://www.cnblogs.com/zhushijun/p/6519410.html

你可能感兴趣的文章
UIPageControl自定义点的颜色
查看>>
逻辑卷管理
查看>>
驱动绕过360的KiFastCallEntry钩子
查看>>
树是一种特殊的图
查看>>
Regex Golf练习笔记(1)
查看>>
LeetCode-Swap Nodes in Pairs
查看>>
windows下安装ffmpeg(php视频处理扩展)
查看>>
CDOJ 1259 昊昊爱运动 II bitset+线段树
查看>>
SpringBoot自定义注解、AOP打印日志
查看>>
python_15_os
查看>>
Common工具类的验证码类的使用(未实现验证)
查看>>
使用Jsoup获取网页内容超时设置
查看>>
img 的 3px
查看>>
Codeforces Round #384 (Div. 2) D. Chloe and pleasant prizes(树形DP)
查看>>
flex布局中flex-basis的理解
查看>>
93. Restore IP Addresses
查看>>
46. Permutations
查看>>
找出点的密集区域,javascript实现,html5 canvas效果图
查看>>
Microsoft project 快捷键
查看>>
hadoop之定制自己的sort过程
查看>>