Page 1 of 1

Website mittig im Browser plazieren

Posted: Thu 1. Sep 2005, 12:28
by poooky
Hallo zusammen, kann mir jemand erklären wie ich die Websites mit den Blocks mittig im Browser plazieren kann? und war nicht nur rechts, links, sondern auch oben und unten http://www.sofah.de

Ob das Layout mit div oder table gebaut wird ist eigentlich egal. Ich weiß nicht ob das eine oder andere dafür Vorraussetzung ist.

ich arbeite mit der Version 1.2.5

Danke für Infos

Posted: Thu 1. Sep 2005, 13:45
by pepe
Schau mal hier nach:

http://www.thestyleworks.de/tut-art/centerblock.shtml

Da gibt's einiges an Futter für jeden Internetbastler... :wink:

Tabellenlösung

Posted: Fri 2. Sep 2005, 07:38
by karlc

Code: Select all

<html>
<head>
<style type="text/css"> body {margin:0px; height:100%; } </style>
</head>
<body>
<table width="100%" height="100%">
<tr>
<td width="100%">
<table width="100%">
<tr>
<td width="100%">WEBSEITE</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
wenn's hilft ;o)

Gruß
Karl