hi all, sorry for my poor English
I need 4 div's on vertically
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META name="generator" content="HTML Tidy for Linux/x86 (vers 12 April 2005), see www.w3.org">
<TITLE>This is Title</TITLE>
<link href="stylesheet/style.css" rel="stylesheet" type="text/css" />
</HEAD>
<BODY>
<div id="MainDiv">
<div>
<span>fierst</span>
</div>
<div>
<span>Second</span>
</div>
<div>
<span>Third</span>
</div>
<div id="divBottom">
<span>other</span>
</div>
</div>
</BODY>
</HTML>
and there is my css class :
CODE
div#MainDiv{
border:1px solid red;
float:left;
height: 300px;
}
div#divBottom{
background-color:yellow;
height: 100%;
}
but 4 th div is higher more than main div

, i tried to set 100 % for divBottom from left area

is it possible ? bottom div is static, bot above this may be were n capacity of divs

they are generated dynamically,
any idea will be appreciate
Regards,
Paata