blob: bc302c9ba7e3fe9c9efa691e7bc9a09e5af9dcd4 (
plain)
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
|
<style>
body { overflow: hidden; }
td {
border: 1px solid black;
}
</style>
<table>
<tr>
<th></th>
<th></th>
<th>text-align:left</th>
<th>text-align:center</th>
<th>text-align:right</th>
</tr>
<tr>
<th></th>
<td><input type="file"></td>
<td><input type="file" style="text-align:left"></td>
<td><input type="file" style="text-align:center"></td>
<td><input type="file" style="text-align:right"></td>
</tr>
<tr>
<th>direction:ltr</th>
<td><input type="file" style="direction:ltr"></td>
<td><input type="file" style="direction:ltr; text-align:left"></td>
<td><input type="file" style="direction:ltr; text-align:center"></td>
<td><input type="file" style="direction:ltr; text-align:right"></td>
</tr>
<tr>
<th>direction:rtl</th>
<td><input type="file" style="direction:rtl"></td>
<td><input type="file" style="direction:rtl; text-align:left"></td>
<td><input type="file" style="direction:rtl; text-align:center"></td>
<td><input type="file" style="direction:rtl; text-align:right"></td>
</tr>
</table>
|