Hej alle!
Jeg er ved at blive sindsyg..
Hvorfor har får jeg et linjestørrelse gap foroven så snart jeg har et <p> tag i den inderste <div>?
Og hvorfor kan IE ikke finde ud af at centrere som Firefox gør..
kan ses online her:
http://team-urin.dk[...]
og her er koden:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta http-equiv="Pragma" content="no_cache">
<meta http-equiv="imagetoolbar" content="no">
<meta http-equiv="imagetoolbar" content="false">
<title>DEMO</title>
<style type="text/css">
body{
background-color:#E9E7E8;
margin: 0px;
}
#page{
Width: 770px;
background-image:url("backgroundfiller.jpg");
background-repeat:repeat-y;
height:100%;
margin-left: auto;
margin-right: auto;
margin-top: 0px;
}
#innerpage{
width: 640px;
background-color: #000000;
padding: 0px;
margin-left: 60px;
margin-top: 0px;
}
</style>
</head>
<body>
<div id="page">
<div id="innerpage">
<p>Linje</p>
<p>Linje</p>
<p>Linje</p>
<p>Linje</p>
<p>Linje</p>
</div>
</div>
</body>
</html>
--