SyntaxFix
Write A Post
Hire A Developer
Questions
Building on what has been said before, this is a pure CSS solution that works.
<style> span { display: inline; } span:before { content: "\a "; white-space: pre; } </style> <p> First line of text. <span>Next line.</span> </p>