I am a floated box!
I am content inside the container.
.box { background-color: rgb(224, 206, 247); border: 5px solid rebeccapurple; display: flow-root; } .float { float: left; width: 200px; height: 150px; background-color: white; border:1px solid black; padding: 10px; }
<div class="box"> <div class="float">I am a floated box!</div> <p>I am content inside the container.</p> </div>