problemer med centrering horisontalt og vertikalt
Jeg er ved at sætte en hjemmeside op, som skal være centreret i midten af browseren... Problemet er, at indholdet delvist forsvinder i venstre side, når browservinduet gøres mindre. Er der nogen der kan gennemskue en måde at gøre det?Her kommer min kode...
<html><head><title>testside</title>
<META NAME="Generator" CONTENT="Stone's WebWriter 3.5">
<style type="text/css">
<!--
DIV.outer
{
position:absolute;
left:50%;
top:50%;
width:964px;
height:594px;
margin-left:-482px;
margin-top:-297px;
background-color:#404040;
background-image:url(bg_estate.gif)
}
DIV.flash
{
position:relative;
left:7px;
top:40px;
width:950px;
height:390px;
margin-left:0px;
margin-top:0px;
background-color:#99CCFF;
}
DIV.content
{
position:relative;
left:7px;
top:40px;
width:950px;
height:146px;
margin-left:0px;
margin-top:0px;
background-color:#404040;
}
body {
background-color: #ebe7e0;
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"></head>
<body>
<div class="outer">
<div class="flash">
Her kommer flash fil
</div>
<div class="content">
her kommer content
</div>
</div>
</body>
</html>