Line break on mobile phone only

Henrik picture Henrik · Jun 15, 2016 · Viewed 23.8k times · Source

I have a phone number on a website. It looks good on a laptop, but on a mobile device half of the number jumps to the next line. It doesn't look good.

So how can I create a line break that will only work on a mobile device sized screen?

I am not very experienced in coding, so please be specific :) Thanks a lot for any help!

Answer

Richard de Ree picture Richard de Ree · Oct 5, 2018

Why not just do a line break as a class in the
tag?

<br class="mobile-break">

and in CSS

    @media screen and (min-width: 600px)  {
        .mobile-break { display: none; }
    }