-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpensetable.html
155 lines (137 loc) · 3.23 KB
/
expensetable.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>费用报销单</title>
<style>
main {
font-family: "楷体";
width: 1000px;
margin: 0 auto;
position: relative;
}
h1 {
margin: 0;
text-align: center;
letter-spacing: 20px;
}
h1 span {
letter-spacing: 0;
}
.line {
border-top: solid 1px black;
border-bottom: solid 1px black;
height: 3px;
width: 250px;
margin: 0 auto 10px auto;
}
#expensetable {
border: solid 1px black;
border-collapse: collapse;
font-size: 20px;
}
#expensetable td {
border: solid 1px black;
height: 50px;
}
.wsmall {
width: 50px;
}
.wmid {
width: 150px;
}
.wbig {
width: 400px;
}
.wsmid {
width: 200px;
}
.spacebig {
text-align: center;
letter-spacing: 100px;
}
.spacebig span {
letter-spacing: 0;
}
.spacesmall {
text-align: center;
letter-spacing: 5px;
}
.spacesmall span {
letter-spacing: 0;
}
.spacemid span {
letter-spacing: 32px;
}
.spancenter {
text-align: center;
}
.asidep1 {
margin: 0;
position: absolute;
width: 30px;
top: 170px;
left: -30px;
}
.asidep2 {
margin: 0;
position: absolute;
width: 30px;
top: 340px;
left: -30px;
}
</style>
</head>
<body>
<main>
<h1>费用报销<span>单</span></h1>
<div class="line"></div>
<p>报销部门:                      年  月  日填                 单据及附件共<u>   </u>页
</p>
<table id="expensetable">
<tbody>
<tr>
<td class="wbig spacebig">用<span>途</span></td>
<td class="wmid spacesmall">金额(元)</td>
<td class="wsmall spancenter" rowspan="4">备<br><br><br>注</td>
<td class="wbig" rowspan="4" colspan="3"></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td class="spancenter" rowspan="3">部<br>门<br>审<br>批</td>
<td rowspan="3" colspan="3"></td>
</tr>
<tr>
<td></td>
<td></td>
</tr>
<tr>
<td class="spacebig">合<span>计</span></td>
<td></td>
</tr>
<tr>
<td class="spacemid" colspan="2">金额大写<span>:拾万仟佰拾元角分</span></td>
<td colspan="2" class="wsmid">原借款:    元</td>
<td colspan="2" class="wsmid">应退余款:    元</td>
</tr>
</tbody>
</table>
<p>    会计主管      会计          出纳          报销人          领款人</p>
<p class="asidep1">标准会计凭证系列</p>
<p class="asidep2">深圳洁立信出品</p>
</main>
</body>
</html>