a po?íta s tým, že máte vytvorený obrázok "pozadie.gif" ktorý použijeme ako pozadie.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Centrovaný layout</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2" />
</head>
<body>
</body>
</html>
<style type="text/css">
body {
background: white; /* farba pozadia stránky */
text-align: center; /* definícia pre IE - vycentrovanie */
margin: 0; /* definícia pre Operu - stránka nebude ma? žiadne okraje */
padding: 0; /* definícia pre Gecko - stránka nebude ma? žiadne okraje */
#pozadie {
width: 750px;
margin-left: auto; /* tento div bude vycentrovaný */<br />
margin-right: auto;
background: url("pozadie.gif") repeat-y; /* v dive sa bude vertikálne opakova? obrázok "pozadie.gif" */
}
#frame {
text-align: left;
width: 700px;
margin-left: auto;
margin-right: auto;
}
</style>