this did the trick for me
div {
text-align: justify;
}
div:after {
content: "";
display: inline-block;
width: 100%;
}
However using that trick I had to force the height of my element to prevent it for adding a new empty line.
I took that answer from Force single line of text in element to fill width with CSS
Also have look here for explanations: http://blog.vjeux.com/2011/css/css-one-line-justify.html