Break text with br
How to break a line of text at a specific width for mobile
by 517Design
HTML
<p>
The below line breaks at 766px.
</p>
<p>
This is the line of text<br class="hidebreak"> I want to break.
</p>
CSS
@media (min-width: 767px) {
br.hidebreak {display:none;}
}