Non sono un gran ché con il css:
Codice HTML:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>prova tabelle coreyx</title>
<style type="text/css">
#tabella
{
text-align: center;
width: 400px;
height: 150px;
margin: 0;
}
#alto
{
width:400px;
clear:both;
}
#centrale, #sx, #dx, #fondo_sx, #fondo_dx
{
float: left;
}
#sx,#dx,#fondo_sx
{
width: 50px;
}
#centrale
{
width: 300px;
}
/*inutile: */
#alto{background-color: yellow;}#sx{background-color: green;} #centrale { background-color: orange; }#dx{background-color: purple;}#fondo_sx{background-color: blue;}#fondo_dx{background-color: pink;}
/**/
</style>
</head>
<body>
<div id="tabella">
<div id="alto">alto</div>
<div id="sx">sx</div><div id="centrale">centrale</div><div id="dx">dx</div>
<div id="fondo_sx">fondo_sx</div><div id="fondo_dx">fondo_dx</div>
</div>
</body>
</html>
Sarebbe istruttivo anche per me vedere un'altra soluzione.
Ciao!