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
@incompatible-units: 2 + 5px - 3cm; // result is 4px
The docs state that the result is 4 px ( 2 + 5 = 7px minus cm ignored gives (7px - 3cm = 4px)). However, the result is different. For example,
p {
margin-left: 2 + 5px - 3cm;
}
According to the docs, the left margin must be 4px that is the paragraph content must be moved 4px to the right. However, the observed behaviour is: Paragraph content is moved 7px to the right and then 3cm to the left.
The text was updated successfully, but these errors were encountered:
@incompatible-units: 2 + 5px - 3cm; // result is 4px
The docs state that the result is 4 px ( 2 + 5 = 7px minus cm ignored gives (7px - 3cm = 4px)). However, the result is different. For example,
p {
margin-left: 2 + 5px - 3cm;
}
According to the docs, the left margin must be 4px that is the paragraph content must be moved 4px to the right. However, the observed behaviour is: Paragraph content is moved 7px to the right and then 3cm to the left.
The text was updated successfully, but these errors were encountered: