Vises ikke ens i IE og FF
Jeg har lige et problem med denne code - som ved afvikling i de nævnte browsere viser forskellen.Hvad skal rettes ?
.....................
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>tester</title>
<style type="text/css" media="screen">
html,body {
margin:0;padding:0;}
body{
font: normal 12px Verdana, Geneva, Arial, Helvetica, sans-serif;
background-color: #B3AEB5;
background-attachment:fixed;
background-repeat:no-repeat;
background-position: center;
}
.wrapper
{
width: 770px;
margin:0 auto;
}
.title
{
background-color: #6D8269;
color: #C7E1A7;
font-weight: bolder;
font-size: x-large;
padding: 10px 20px 10px 20px;
}
.title2
{
background-color: #6D8269;
color: #C7E1A7;
font-weight: lighter;
font-size: small;
}
.titlemargin
{
margin: 10px 0px 10px 0px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="title titlemargin" style="height: 20px;">
<div style="float: left; margin-left: 120px;">Her har vi et logo</div>
</div>
<div class="title2 titlemargin" style="height: 20px;">
<div style="float: left; margin-left: 160px;">....der ikke placere sig ens i IE og FF</div>
</div>
</body>
</html>
