Here is the code snippet I'm working with:
<div>First</div>
<div class="second">Second</div>
<a>Alink</a>
div{
display: block;
float:left;
}
.second{
clear:right;
}
I am facing an issue where the link is positioned next to the second div and I want it on the next line. How can I make sure elements after these floated elements go to the next line without making the divs take up the entire width of the page?