<div style="width:100%;height:100%;">
<div style="width:100%;height:100px;background-color:#CC0000"></div>
<div style="width:100%;height:100%;background-color:#0000CC"></div>
</div>
i want this:
third div - his height set to 100% minus 100px of second div.
second div 100px height fixed and third div is relative height
result on screen without scroll.
thanks
Filip.
Untested, but try:
<div style="width:100%;height:100%;">
<div style="width:100%;height:100px;background-color:#CC0000"></div>
<div style="width:100%; top: 100px; bottom: 100%;
background-color:#0000CC"></div>
</div>
thanks for your help!
Filip
"Filip Honzarek" <deve...@acomp.cz> wrote...