Take a look at this code snippet:
<div class="content">
This is some title<br/>
Some text<br/>
And maybe more text.
</div>
I am trying to wrap the first sentence with a <span>
tag before the <br/>
element, like so:
<div class="content">
<span>This is some title</span><br/>
Some text<br/>
And maybe more text.
</div>