I’m working on a project, and I need know how I can force breakline, giving preference to a float:right element.
See this picture:

There are some CSS attribute that I can use to work with this case? I have tried clear: left, but nothing.
Code: jsFiddle
Out of script: what you think that have a better visual? :p
The easiest way is to move your element with
float: rightto before your other elements:See: http://jsfiddle.net/G9UAR/1/
It is (probably) possible to do without switching around the HTML, but that answer would be a lot more complicated.