Una cosa del genere puo andare?
Nel caso positivo resterebbe da definire lo scrolling orrizontale.
[php]
<html>
<head>
<title>Test</title>
<style type="text/css">
body
{
padding:0px;
background:#ADD8E6;
margin:0px;
text-align:center;
}
#content
{
width:1220px;
margin:0px auto;
}
#header,#footer
{
width:1220px;
background:#00ffff;
}
#single0
{
width: 30px;
background:#CCCCCC;
text-align:left;
float:left;
}
#single1
{
width:600px;
background:#FFD4D4;
text-align:left;
float:left;
}
#single2
{
width: 350px;
background:#AAFFFF;
text-align:left;
float:left;
}
#single3
{
width: 240px;
background:#FFFFAA;
text-align:left;
float:left;
}
</style>
</head>
<body>
<div id="content">
<div id="header">Header</div>
<div id="single0">0</div>
<div id="single1">
testo1<br />
testo2<br />
testo3<br />
testo4<br />
testo5<br />
</div>
<div id="single2">2</div>
<div id="single3">3</div>
<div style="clear:both"></div>
<div id="footer">Footer</div>
</div>
</body>
</html>
[/php]