<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>

 

 

posted on 2017-06-11 22:58  失却之阵  阅读(126)  评论(0)    收藏  举报