[Solved] How to ignore br tag in mobile view


Add this into your CSS:

@media(max-width: 360px) {
  .email-message br {
    display: none;
  }
}

use some ID or class to encapsulate it’s effect inside the elements you specifically need, otherwise it will get rid of all br tags in mobile. If this is what you want, simply do:

@media(max-width: 360px) {
  br {
    display: none;
  }
}

1

solved How to ignore br tag in mobile view