Is there a way to stop android mobile devices wrapping text to the screen width?
Layout container widths are preserved (tables, td’s) but android insists on wrapping the text to fit the screen width.
This is for html newsletters so I need something to stick in a media query and nothing in
<head></head>
tag as this will get stripped by the mail client.
Cheers
Yes!
You can easily achieve that using the CSS code “white-space: nowrap“.
You could just prevent wrapping on certain part of the newsletter/page with the inline CSS:
Pretty easy uh? 😉
Hope this helps.