Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Orange's default styles #48

Open
hteumeuleu opened this issue Aug 6, 2018 · 0 comments
Open

Orange's default styles #48

hteumeuleu opened this issue Aug 6, 2018 · 0 comments
Labels
Other clients Samsung, SFR, Orange, T-Online, Onet, …

Comments

@hteumeuleu
Copy link
Owner

The desktop webmail of french provider Orange has several default styles that can be quite annoying to tackle the first time. The styles can be found at:

The CSS filename presumably changes at every update from their part.


Among the most notoriously annoying rules is the following:

table {
  margin:0;
}

This overrides any align attribute on a <table>. So if you want to center a <table> in Orange's webmail, you must use <table align="center" style="margin:0 auto;">.


Another seemingly annoying rule is the following:

td {
  vertical-align:top;
}

This will override any valign attribute on a <td>. So if you want to vertically align something at anything else than top, you must use <td style="vertical-align:bottom;">.

@hteumeuleu hteumeuleu added Orange Other clients Samsung, SFR, Orange, T-Online, Onet, … and removed default styles labels Jul 10, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Other clients Samsung, SFR, Orange, T-Online, Onet, …
Projects
None yet
Development

No branches or pull requests

1 participant