My question is a bit like this one: CSS: alight left and right within the same line (without floats)
The difference is that i have 3 elements in a row (date, title, author) and I want the author to be aligned right.
Here's a JSFiddle with a part of the solution. The problem is, that in my fiddle the author is positioned absolutely, so while making the window smaller you'll see that at some point the title will overlap the author.
.e-author {
position: absolute;
right: 0;
}
TL;DR: Can I align one of three elements at the very right without floats and / or additional html elements?