CITAT (don_dannielo @ 30th September 2009, 09:38)

Nu reusesc sa fac ceva ca in imaginea de mai jos.
Liniile negre sunt tabelul, si patratele verzi sunt niste poze cu dimensiunile respective.
Stiu ca pentru celulele mari trebuie folosit colspan="2" rowspan="2".
Dar problema apare atunci cand introduc prima poza mare de jos (din stanga). TOATA coloana, inclusiv cele doua celule de 125px de deasupra, se mareste la 250px.
Exista solutii, dar totul facut dintr-un singur tabel?
sau renunti definitiv la tebel si faci cu div. UIte-asa:
CODSURSA
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title></title>
<style type="text/css">
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
.clearfix:after{
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {display: inline-block;}
html[xmlns] .clearfix {display: block;}
* html .clearfix{height: 1%;}
.float-left {float:left}
.float-right {float:right}
#wrapper {margin:0 auto;width:540px}
#first-block {background:gray}
#second-block {background:yellow}
.narrow {width:125px;padding:10px 10px 0 10px;min-height:250px;}
.wide {width:250px;padding:10px 10px 0 10px;min-height:250px;}
#first-block .wide {padding: 10px 0 0 0}
.image {background:green;text-align:center;margin-bottom:10px}
.wide .image {min-height:250px}
.narrow .image {min-height:125px}
</style>
</head>
<body>
<div id="wrapper">
<div id="first-block" class="clearfix">
<div class=" narrow float-left">
<div class="image">poza 125px</div>
<div class="image">poza 125px</div>
</div>
<div class="wide float-left">
<div class="image">poza 250px</div>
</div>
<div class="narrow float-left">
<div class="image">poza 125px</div>
<div class="image">poza 125px</div>
</div>
</div>
<div id="second-block" class="clearfix">
<div class="wide float-left">
<div class="image">poza 250px</div>
</div>
<div class="wide float-right">
<div class="image">poza 250px</div>
</div>
</div>
</div>
</body>
</html>