Android devices wrap text to screen width

Is there a way to stop Android mobile devices from wrapping text to the width of the screen?

The widths of the layout container are preserved (tables, td), but android insists on wrapping the text to fit the width of the screen.

This is for html newsletters, so I need to stick with something in the media query and nothing in

<head></head> 

      

tag

since it will be removed by the mail client.

Greetings

+3


source to share


1 answer


Yes

You can easily achieve this using the "white-space: nowrap" CSS code.

You can simply prevent inline CSS from wrapping a specific portion of the newsletter / page:



style="white-space: nowrap"

      

Pretty easy?;)

Hope it helps.

+6


source







All Articles