Hvorfor bliver min side ikke centreret i FF?
Min index fil ser sådan ud:
<html>
<head>
<meta http-equiv="pragma" content="no-cache" />
<title>ppDesign</title>
<link rel="stylesheet" type="text/css" href="stil.css" />
</head>
<body>
<div class="out">
<div class="top">
TEST
</div>
<div class="page">
TEST uiefi uhewfui ewui fhuie guii rgiu giubg ifdviua bure hgina iuerbg iueabvui eb kjdbvka le guio ewui fhuie guii rgiu giubg ifdviua bure hgina iuerbg iueabvui eb kjdbvka.
</div>
<div class="bottom">
TEST
</div>
</div>
</body>
</html>
Og in CSS fil sådan ud:
.out {
font: 12px Verdana;
text-align: center;
}
.top {
border: 1px solid #000000;
padding: 1px;
margin: 5px;
text-align: left;
background-color: #000000;
color: #FFFFFF;
}
.page {
border: 1px solid #000000;
text-align: justify;
padding: 5px;
}
.bottom {
margin: 5px;
background-color: #000000;
color: #FFFFFF;
}
.top,.bottom,.page {
width: 800px;
}