You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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;">.
The text was updated successfully, but these errors were encountered:
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:
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:
This will override any
valign
attribute on a<td>
. So if you want to vertically align something at anything else thantop
, you must use<td style="vertical-align:bottom;">
.The text was updated successfully, but these errors were encountered: