ecco i due problemi che mi si presentano:
-vorrei che non ci fosse spazio tra l'header e il container.
-vorrei che in explorer il tutto fosse centrato invece che allineato a sinistra.
-non riesco a scrivere nella colonna più larga..
Grazie.
Posto il codice:
body {
background: #f5fe00;
font-family: Arial, Verdana, Sans-serif;
font-size: 14px;
color: #000;
text align: center;
}
#content {
width: 500px;
height: 400px;
margin: 10 auto;
background: #000;
}
#header {
width: 500px;
height: 100px;
background: #fa03d4;
margin: 10 auto;
}
#footer {
width: 500px;
height: 50px;
background: #fa03d4;
margin: 10 auto;
}
#colonnadx {
widht: 100px;
height: 400px;
background: #ffffff;
margin: 0 0 0 350px;
}
#rimpiazza {
background:url(1.gif)no-repeat 50% 50%;
widht: 383px;
height: 90px;
text-indent:-100em;
}
</style>
</head>
<body>


<div id="header">
<div id="rimpiazza">Lorem ipsum <span></span></div>
</div>
<div id="content">
<div id="colonnadx"></div>
</div>
<div id="footer">
</div>
</body>
</html>