look above fiddle.
As I know, floating element goes into the inside of its parent element.
But it is not. I don't know why.
I want make that floating blue div moves into its parent green div.
Why this floating div ran away from its parent div's area?
Below is the example code ( http://jsfiddle.net/hL8tvet8/ )
html :
<div class="header">
<div class="left"></div>
<div class="float_R"></div>
</div>
css :
.header {width: 200px; background-color: green;}
.left {width:50px; height: 50px; background-color: red;}
.float_R {width:50px; height: 50px; background-color: blue; float:right;}