1. 程式人生 > >html之table

html之table

log 單元格 png table 不支持 spa body 技術分享 bsp

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

技術分享

html之table