I'm new to CSS and banging my head against a wall trying to figure out why when I have 2 elements floated right and one left that the third doesn't show up in the middle.
#red {
width: 250px;
height: 250px;
background-color: red;
float:left;
}
#yellow {
width: 250px;
height:250px;
background-color: yellow;
float:right;
}
#blue {
width: 250px;
height:250x;
background-color:blue;
}
<p id="red">This is bullshit.</p>
<p id="yellow">It is taking me way to long to figure out.</p>
<p id="blue">WTF?</p>