Rumah > Artikel > hujung hadapan web > html怎么做表格
html做表格的方法:首先新建一个html,并在“”中间填入表格内容;然后在“”中间输入样式表的样式;最后设置单元格的宽度高度等等样式即可。
本文操作环境:Windows7系统、HTML5&&CSS3版,DELL G3电脑
html做个表格的步骤如下:
1、首先新建一个html,点击6c04bd5ca3fcae76e30b72ad730ca86d36cc49f0c466276486e50c850b7e4956中间,先填入表格内容;
2、内容根据需求来写即可,示例代码如下:
<table> <p style="text-align:center ">功课表</p> <tr> <th>语文</th> <td>7:00-7:40</td> <td>7:50-8:30</td> </tr> <tr> <th>数学</th> <td>7:00-7:40</td> <td>7:50-8:30</td> </tr> <tr> <th>英文</th> <td>7:00-7:40</td> <td>7:50-8:30</td> </tr> </table>
3、然后在93f0f5c25f18dab9d176bd4f6de5d30e9c3bca370b5104690d9ef395f2c5f8d1中间输入样式表的样式;
4、样式也根据个人的需求来设置即可,设置单元格的宽度高度,合并单元格,位置,颜色等等,示例代码如下:
<style type="text/css"> body { width:340px; height :800px; } table { border-collapse :collapse ; } th,td { width:100px; height:40px; border :1px solid black; font-size:12px; text-align :center; } </style>
5、这里需要注意这个代码“table”的意义是将表格边框合并为单一的边框,将相邻变合并。
6、预览结果如下所示,一个简单的表格就制作出来了。
Atas ialah kandungan terperinci html怎么做表格. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!