I know a lot of people have asked questions on float
before, but from even looking at them I can't see what I'm doing wrong. I just want
HELLO
THERE
To be just to the left of the ul. Based on this answer I tried adding clear:both to the parent div. And based on this answer I tried adding overflow:hidden to the parent. Neither worked.
In all cases the UL is under the HELLO THERE and to the right.
<div>
<div style"float:left;">
<div>HELLO</div>
<div>THERE</div>
</div>
<div style="float:right;">
<ul>
<li>A</li>
<li>B</li>
<li>C</li>
</ul>
</div>
</div>