Correcting teacher:天蓬老师
Correction status:qualified
Teacher's comments:一定要动手写, 以为懂了, 一写全错, 对不?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>层叠样式表练习</title>
<style>
* {
margin: 0px;
}
.rongqi {
margin: 50px 20% 100% 20%;
width: 650px;
height: 100%;
background-color: bisque;
}
.biaoti {
margin: 50px 20% 10px 20%;
}
.biaotou {
margin: 0px 9% 0px;
}
table {
margin: 3px;
border: red solid 1px;
width:400px;
}
</style>
</head>
<body>
<div class="rongqi">
<h2 class="biaoti">成都XXX有限责任公司专用收款收据</h2>
<div class="biaotou">
<span>客户名称:</span>
<span>房号:</span>
<span>No:</span>
</div>
<table>
<tr>
<th>费用项目</th>
<th>摘要</th>
<th>金额</th>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
</table>
<div>
<span>收款单位(盖章)</span>
<span>收款人:</span>
<span>交款人:</span>
</div>
</div>
</body>
</html>