I am having trouble pushing my headings and paragraphs below my header on my resume. In addition I can’t get my name to show up on my header. Someone please help me out?
<div id="header">
<h1>Thomas Fox</h1>
</div>
Make your left and right containers have full height. To do this, put everything below the header in a wrapper div. The content will determine the height of the wrapper div, and the left and right will fill their respective sides…
<div id="wrapper">
<div class="left"></div>
<div class="right"></div>
<!-- content -->
</div>
CSS
.left, .right {
height: 100%;
}
Awesome, Thanks, A lot!
1 Like