前端笔记1:html表格应用

2022/4/25 23:12:44

本文主要是介绍前端笔记1:html表格应用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

<table></table>标签定义html表格

  • table 表示表格
  • tr 行
  • td 标准单元格
  • th 表头单元格(在前)
  • border 表格边框
  • width 表格宽度

<table border="3" width="500px" align="center" style="border-collapse:collapse;">

         <tr align="center" valign="top" bgcolor="green">

            <th>姓名</th>

            <th>年龄</th>

            <th>爱好</th>

         </tr>

         <tr align="center" valign="top" bgcolor="red">

            <td>张辰龙</td>

            <td>23岁</td>

            <td>网络</td>

         </tr>

         </table>

colspan 横向合并

rowspan 纵向合并



这篇关于前端笔记1:html表格应用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程