Break text with br

How to break a line of text at a specific width for mobile

HTML

<p>
The below line breaks at 766px.
</p>

<p>
 This is the line of text<br class="hidebreak"> I wantto break.
</p>

CSS

@media (min-width: 1024px) {
  br.hidebreak {display:none;}
}