Du kan også lægge dine styles ud i et eksternt stylesheet. Så ser det således ud:
Eksternt stylesheet (/Css/Css.css):
html, body {margin:0; padding:0; height:100%;}
#minTop {position:absolute; width:800px; height:100px; background-color:yellow;}
#minDiv {position:absolute; top:150px; width:800px; height:400px; overflow:auto; background-color:#C0C0C0;}
.divCenter {margin:0 auto; width:800px;}
Dokument.html:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"> <html>
<head>
<title>Dokument</title>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<link rel="stylesheet" href="/Css/Css.css" type="text/css">
</head>
<body>
<div class="divCenter"><div id="minTop" style="margin-top:50px;">Top</div></div>
<div class="divCenter"><div id="mainDiv" style="margin-bottom:50px;">
Test123...
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>
</div></div>
</body>
<html>