1.如何用html编写表格楼主你好 。
html编写表格的方法有多种 。
1. 最简单的就是用html标签<table></table>
表格是由表头,表格,表行组成的 。
表头<tt></tt>
表行<tr></tr>
表格<td></td>
表头和表格都是放在表行里面的 。
下面假设写一个2行1列的表格
2. <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Table</title>
</head>
<body>
<table>
<tr><th>;第一行</th></tr>
<tr><td>;第二行</td></tr>
</table>
</body>
</html>
2.html表格代码怎么写的用到拆分合并单元格,手写挺麻烦的,先用dw在设计视图片实现,然后再返回代码视图,复制即可.代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<table width="268" height="200" border="1" cellpadding="0" cellspacing="0">
<tr>
<td height="50" colspan="2" bordercolor="#0000FF"> </td>
<td rowspan="4" bordercolor="#0000FF"><table width="100%" height="200" border="1" cellpadding="0" cellspacing="0">
<tr>
<td height="75" bordercolor="#0000FF"> </td>
</tr>
<tr>
<td height="125" bordercolor="#0000FF"> </td>
</tr>
</table></td>
</tr>
<tr>
<td height="50" colspan="2" bordercolor="#0000FF"> </td>
</tr>
<tr>
<td height="50" bordercolor="#0000FF"> </td>
<td height="50" bordercolor="#0000FF"> </td>
</tr>
<tr>
<td height="50" bordercolor="#0000FF"> </td>
<td height="50" bordercolor="#0000FF"> </td>
</tr>
</table>
解释如下:
先插入四行两列的表格,第一列通过合并单元格来实现,第二列将所有单元格合并,然后新插入一个两行一列的表格即可实现上述效果.
3.html中怎样用代码写一个表格可以这样:
<style type="text/css">
<!--
.style2 {font-size: 5pt}
-->
</style>
<table width="500" border="1" align="center" cellpadding="0" cellspacing="0">
<tr align="center" valign="middle">
<td colspan="3"><span class="style2">;列车时刻表 </span></td>
</tr>
<tr align="center" valign="middle">
<td><span class="style2">;随便打些字</span></td>
<td><span class="style2">;随便打些字</span></td>
<td><span class="style2">;随便打些字</span></td>
</tr>
<tr align="center" valign="middle">
<td><span class="style2">;随便打些字</span></td>
<td><span class="style2">;随便打些字</span></td>
<td><span class="style2">;随便打些字</span></td>
</tr>
<tr align="center" valign="middle">
<td><span class="style2">;随便打些字</span></td>
<td><span class="style2">;随便打些字</span></td>
<td><span class="style2">;随便打些字</span></td>
</tr>
</table>
4.用html怎么做表格<body>
<table>
<tr>
<td>;标题</td>
<td colspan="3"><input type="text" /></td>
- mfc怎么向excel写数据
- html5文字行间距怎么写
- 购房合同买受人怎么写
- write函数怎么写数字
- oracle执行多语句怎么写
- lol赠礼中心选择收件人怎么写
- html中浮动怎么写
- jsp中绝对路径怎么写
- sweet的音标怎么写
- java中重载怎么写