by pietman
12. November 2009 10:38
Here follows the minimum code you need to display your website in the middle of the screen:
(notice the importance of the "margin: auto" and "width: ___px" properties)
#main_div {
margin: 0 auto;
width: 200px;
}
Html:
<body>
<div id="main_div">
<p>My Page</p>
</div>
</body>
59107c8f-e5ec-41bc-9ee5-ee95b29942ee|0|.0
Tags: div, center
CSS