test.htm
969 Bytes
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
<style>
.corner-top-left{
height:4px;width:4px;
background:url('corner-top-left_wev8.gif') no-repeat;
}
.corner-top-right{
height:4px;width:4px;
background:url('corner-top-right_wev8.gif') no-repeat;
}
.corner-bottom-left{
height:4px;width:4px;
background:url('corner-bottom-left_wev8.gif') no-repeat;
}
.corner-bottom-right{
height:4px;width:4px;
background:url('corner-bottom-right_wev8.gif') no-repeat;
}
.line-x{
height:4px;
background:url('line_wev8.gif') repeat-x;
}
.line-y{
width:4px;
background:url('line_wev8.gif') repeat-y;
}
</style>
<table width="100%" height="100px" cellpadding="0" cellspacing="0">
<tr>
<td class="corner-top-left"></td>
<td class="line-x"></td>
<td class="corner-top-right"></td>
</tr>
<tr>
<td class="line-y"></td>
<td>aaabcdqrqrqrqrqrqrqe</td>
<td class="line-y"></td>
</tr>
<tr>
<td class="corner-bottom-left"></td>
<td class="line-x"></td>
<td class="corner-bottom-right"></td>
</tr>
</table>