We are using a CMS which limits my ability to edit the HTML. I have a paragraph of text, followed by a link:
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmodtempor incididunt ut labore.
Click here
Our designer would prefer to have the "Click here" link appear directly at the end of the paragraph of text:
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmodtempor incididunt ut labore. Click here
Is it possible to position the link with CSS such that it always appears at the end of the preceding paragraph? Here is the HTML produced by our CMS:
<div class="item summary">
<div class="content">
<p>
Lorem ipsum...
</p>
</div>
</div>
<div class="item link">
<div class="content">
<a href="http://www.example.com">Click here</a>
</div>
</div>