<div style="float: left">text1</div>
<div style="float: right;">text2</div>
<div class="random_class">text3</div>
Here is the problem. Random_class goes to the top, on the text1 and text2. What is wrong? Thank you.
|
|
You need to clear the floats, below is an example of it.
You could also do
|
|||||||||
|
|
|
|
|||||
|
|
|
Whenever you float an element it takes it out of content flow. Text1 and Text2 are floated so Text3 acts like it doesn't see it there. Floats are aware of other floats. Using |
|||
|
|