gaps between divs

benjamin.morgan

New Member
I have a layout, I can't remember what to do to fix it and google hasn't been any help. Here is an image of what its doing.
index.png


Here is my code

HTML
Code:
<div class="header">
	<div class="container">
		<p style="float: left;" class="whitet">Logo here</p>
		<p class="whitet" style = "float: right;">CONTENT HERE</p>
	</div>
</div>
<div class="process">
	<div class="container">
		<p class="whitet" style="font-size: 12px;padding-top: 200px;">Here is some content right here<br>Here is some more content in this very spot</p>
	</div>
</div>
<div class="content">
	<div class="container">
	<div>		
	<p class="whitet">content here</p>
</div>
	</div>
</div>

CSS
Code:
 body {
	margin: 0 auto;
	font-family: Tahoma, sans-serif;
 }
 
 .container {
	width: 960px;
	margin: 0 auto;
	padding-top:0px;
	padding-bottom: 0px;	
	margin-top:0px;
	margin-bottom: 0px;

	
}
.header {
	background: black;
	height: 100px;
}


.process {
	height: 300px; 
	background: green;
}

.content {
	height: 500px;
	background: red;
}




.whitet {
	color: white;
}


ALSO it isn't there when I remove the p tags but I kindof need them for content.
 
Top