Using CSS, can I set a div class to some text on a paragraph to drop it to the line below?
I tried float: left; and it moved the text to the beginning of the paragraph which is a good start as I would want the text on the left, but I need it on the line below.
Here's the HTML:
<div class="tweet">
<ul class="tweet_list">
<li class="tweet_odd">
<span class="tweet_text">This is a tweet</span>
<span class="tweet_time">1 minute ago</span>
</li>
</ul>
</div>
Thanks
Add this to the div you want to drop below, it may do the trick:
<div style="clear: both;">
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With