S
sysop
Guest
ich habe eine tabelle, deren zeilenhöhe höhe variabel sein soll.
zum tddwn gibt es folgenden css eintrag:
der container sieht so aus:
klappt in allen browserm, nur im ie7 macht er eine ca. 50-100px hohe zeile, die aber lt. css eigentlich mindestens 500px hoch sein sollte.
hmmm
ein ie7 problem oder sysop problem ?
Code:
<table>
<tr>
<td class="tddwn">
<div class="contain">
zeugs
</div>
</td>
</tr>
</table>
den div container habe ich mit einer midesthöhe definiert.
Code:
.tddwn
{
height:100%;
vertical-align:top;
font-family:verdana;
font-size:9px;
padding:4px;
}
Code:
/* der textcontainer */
.contain
{
background-image: url(silvercont.gif);
border:gray 1px solid;
width:100%;
height:98%;
min-height:500px;
text-align:justify; /* blocksatz */
font-size:14px;
padding:5px;
}
hmmm
ein ie7 problem oder sysop problem ?