6 Einträge, 1 Seite |
1
2
3
<table><tr><td style="height: 400px; width: 600px; border-style: solid; text-align: center; vertical-align: middle;">
<img src="happy.gif" />
</td></tr></table>
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
<html>
<head>
<style type="text/css"><!--
table
{
width: 100%;
height: 100%;
}
td
{
vertical-align: middle;
text-align: center;
}
//--></style>
</head>
<body>
<table border="0">
<tr>
<td>
<div>
</div>
</td>
</tr>
</table>
</body>
</html>
6 Einträge, 1 Seite |