Thread element horiz. & vert. mittig ausrichten: mit CSS in div - wie? (5 answers)
Opened by pktm at 2005-10-20 00:08

esskar
 2005-10-20 01:49
#24617 #24617
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
Code: (dl )
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>

wenn du ab da nur noch div benutzt ist es wohl okay

View full thread element horiz. & vert. mittig ausrichten: mit CSS in div - wie?