Quote Originally Posted by vina789 View Post
Hi
I am java developer but i am strucked with css application. Actually i am using tiles concept in my application in which layout page using css tags to specify positions of header,menu ,body,footers.In this project my body content is getting dynamically from database when the content is more my body page is coming out of the footer pls help how to solve this problem my increasing the class "container" height dynamically this is my layout page.

Code:
<html>
	<head>
	<link href="./css/<%=css%>.css" rel="stylesheet" type="text/css" /> 
	</head>
	<body>
	<div class="container"> 
	<table border="0" cellspacing="0" cellpadding="0" style="width:100%;height:100%">  
	 
	<tr>  
	<td colspan="2" height="130">  
	                    <tiles:insert attribute="header"/></td>   
	</tr>  
	<tr> 
	<td width="190">  
	                    <tiles:insert attribute="menu"/></td>  
	<td width="710">   
	                     <tiles:insert attribute="body"/></td> 
	</tr>  
	<tr>  
	<td colspan="2" height="30"> 
	                     <tiles:insert attribute="footer"/></td>  
	</tr>  
	
	</table>  
	
	 </div>
	
	</body>  
	</html>
what you could do is float your container div and inside that place your content div after the content div closes and before the closing of the container div, add a css class which has a style property of clear:both; this will solve your problem...
cheers.