I've been trying to find a simple CSS solution that will allow me to start the content of a paragraph from the end. I've experimented with properties like text-align, text-align-last, text-orientation and others, but haven't had any luck so far.
Here is the code snippet I have:
<p class="tags_holder">
<span class="record_tag">HTML5 canvas</span>
<span class="record_tag">Adoby Animation</span>
<span class="record_tag">Timelines</span>
<span class="record_tag">Flash Movie</span>
<span class="record_tag">Event Sounds</span>
</p>
https://i.sstatic.net/MOtYi.jpg
Currently, the spans wrap, with the last span moving to the second line. What I'm aiming for is to have four of them on the last line, with the wrapping span moving to the first line. Essentially, I want to start the paragraph from the end.