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
Describe the bug
It seems like when setting margin with a css class on Android the syntax of margin: 0 0 0 0; is not adequately merged as it does not overwrite margin-left margin-right margin-top margin-bottom like on iOS plattform.
To Reproduce
.zero {
margin: 0 0 0 0;
padding: 0 0 0 0;
margin-right: 0; //bugfix for android
margin-left: 0 // bugfix for android
} Expected behavior
margins set via margin overwrite margin-left, margin-right, margin-top, margin-bottom
The text was updated successfully, but these errors were encountered:
Environment
Dependencies
Describe the bug
It seems like when setting margin with a css class on Android the syntax of margin: 0 0 0 0; is not adequately merged as it does not overwrite margin-left margin-right margin-top margin-bottom like on iOS plattform.
To Reproduce
.zero {
margin: 0 0 0 0;
padding: 0 0 0 0;
margin-right: 0; //bugfix for android
margin-left: 0 // bugfix for android
}
Expected behavior
margins set via margin overwrite margin-left, margin-right, margin-top, margin-bottom
The text was updated successfully, but these errors were encountered: