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
I've been trying to get a negative margin to work in Yahoo!, as the table indicates it's supported, but it doesn't seem to be. I've tried it both in <style> tags as well as inline, and Yahoo! removes the entire style every time regardless.
So <p style="margin-right: -30px"> becomes <p style>
and
p {
margin: 0 -30px 0 0;
}
becomes
p {
margin 0 0 0;
}
I've also tried both the margin: shorthand and margin-left (right/top/bottom) with no luck.
The text was updated successfully, but these errors were encountered:
I've been trying to get a negative margin to work in Yahoo!, as the table indicates it's supported, but it doesn't seem to be. I've tried it both in <style> tags as well as inline, and Yahoo! removes the entire style every time regardless.
So
<p style="margin-right: -30px">
becomes<p style>
and
becomes
I've also tried both the margin: shorthand and margin-left (right/top/bottom) with no luck.
The text was updated successfully, but these errors were encountered: