标签:sdfs head 支持 跨行 row title 技术分享 border ges
<html>
<head>
<title>afdsfaf</title>
<style>
h1:nth-child(1){
color:red;
}
//在不支持cellspacing和collspacing时使用
// table{ border-collapse:collapse; border:solid 1px Black; }
</style>
</head>
<body>
<h1>welcome you</h1>
//cellspacing collspacing 单元格内边距和外边距
//colspan rowspan 跨列 跨行
//四行两列
<table border="1" cellspacing="0">
<tr>
<td rowspan="2"> sdfsa</td>
<td> sdfsa</td>
</tr>
<tr>
<td> sdfsa</td>
</tr>
<tr>
<td colspan="2"> sdfsa</td>
</tr>
<tr>
<td> sdfsa</td>
<td> sdfsa</td>
</tr>
</table>
</body>
</html>
标签:sdfs head 支持 跨行 row title 技术分享 border ges
原文地址:http://www.cnblogs.com/jasonee/p/6986790.html