I have some question about when floated elements need and don’t need to be cleared.
Consider the following markup:
<div>
<div style="float:right">
<a href="#">Delete Destination</a>
</div>
Unfloated text here.
</div>
This seems to work correctly, although I never clear the floated content. Does this markup have potential problems?
Clearing the text would move it down underneath your “Delete destination”.
Ref: https://developer.mozilla.org/en/CSS/clear