Есть 1 блок с section, в нем присутствуют еще 3 блока, header, content, footer. 
	
	| 
		 Код: 
	 | 
	header {
	height: 70px;
}
content{
	height: 650px;
}
footer {
	background: #7e7e7e;
	color: #dbdbdb;
	font-size: 11px;
	height: 70px;
} | 
	
Проблема в том, что header не получает значение height: 650px; и получается его размер 0х0. В чем может быть проблема?
<body>
  <div id="wrapper">
    <section>
      <header>
        <div id="header">
        </div>
      </header>
      <content>
        <div id="content">
        </div>
      </content>
      <footer>
        <div id="footer">
          <div id="social">
            <a href="http://vk.com/" class="social-icon vk"></a>
          </div>
        </div>
      </footer>
    </section>
  </div>
</body>