for some reason it my postion of div get messed up when i resize window. not sure how to fix this.
<div id = 'header_outer'>
<div id ='header_left'>
<p>HELLO WORLD</p>
</div>
<div id='header_right'>
<h4>HELLOOOOOOOOOOOOOOOOOOOOOO</h4>
</div>
</div>
#header_left
{
border: 3px solid blue;
float: left;
padding-left:20px;
font-weight: bold;
font-size:45px;
width:50%;
}
#header_outer
{
border-bottom: 10px solid #350200;
height: 100px;
width:100%;
color: white;
}
#header_right
{
border: 3px solid black;
float: right;
height:100%;
width:40%;
}