hteumeuleu / email-bugs

Email quirks and bugs
528 stars 20 forks source link

La Poste's mobile webmail default styles #51

Open hteumeuleu opened 5 years ago

hteumeuleu commented 5 years ago

The mobile webmail of french provider La Poste has a generic style rule that resets width on all elements.

.email__body-content * {
width: auto !important;
}

One possible solution to override this is to add an !important on inline declarations as well. But because this would not work in Outlook 2007-2019, you'd need to add the width property twice, as such:

<div style="width:50%; width:50% !important;"></div>
gregoire-bessagnet commented 2 years ago

It seems like the same thing in the last La Poste email application i use on iPhone. I tried you tip but it not worked. Always trying to find a solution.