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
One of the current examples is the following: transform: translate(50%, 10%); /* translates the element by 50% of its width to the left, and 10% of its height to the bottom */
I think the correct example would be this: transform: translate(50%, 10%); /* translates the element by 50% of its width to the right, and 10% of its height to the bottom */
left --> right
Thanks! :)
The text was updated successfully, but these errors were encountered:
On these pages:
http://tympanus.net/codrops/css_reference/transform/#section_translate
https://tympanus.net/codrops/css_reference/translate/
One of the current examples is the following:
transform: translate(50%, 10%); /* translates the element by 50% of its width to the left, and 10% of its height to the bottom */
I think the correct example would be this:
transform: translate(50%, 10%); /* translates the element by 50% of its width to the right, and 10% of its height to the bottom */
left --> right
Thanks! :)
The text was updated successfully, but these errors were encountered: