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
{{ message }}
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
Now border-radius: 10px 10px 0 0; will be flipped to border-radius: 0 0 10px 10px;
while it should be border-radius: 10px 10px 0 0;
since the four values are top-left 1top-right 2 bottom-left 4bottom-right 3
-> 1 2 3 4
and should be turned to be 21 34
-> 2 1 4 3
The text was updated successfully, but these errors were encountered:
udonmai
changed the title
When RTL flipping, border-radius should not be treated differenrtly
When RTL flipping, border-radius should be treated differenrtly
May 10, 2017
Now
border-radius: 10px 10px 0 0;
will be flipped toborder-radius: 0 0 10px 10px;
while it should be
border-radius: 10px 10px 0 0;
since the four values are
top-left 1
top-right 2
bottom-left 4
bottom-right 3
->
1 2 3 4
and should be turned to be
2
1
3
4
->
2 1 4 3
The text was updated successfully, but these errors were encountered: