From 7687f26c5638bbe03819b1ec8e529e8d9a7c0941 Mon Sep 17 00:00:00 2001 From: Greg Brewton Date: Fri, 15 Feb 2019 12:13:32 -0700 Subject: [PATCH] Information correction (#28582) Eliminated the line (rotate() works the same way that skewX() and skewY() do). It is incorrect. SkewX and SkewY do not work the same as rotate, perhaps in the sense that they take an argument ranging from 0 to 360deg, but they do not have the same effect. --- .../create-a-more-complex-shape-using-css-and-html.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/create-a-more-complex-shape-using-css-and-html.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/create-a-more-complex-shape-using-css-and-html.english.md index 288b6ed41e..c496c50198 100644 --- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/create-a-more-complex-shape-using-css-and-html.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/create-a-more-complex-shape-using-css-and-html.english.md @@ -16,7 +16,7 @@ In the above example, the element with the class of heart has a Transform the element on the screen to a heart. In the heart::after selector, change the background-color to pink and the border-radius to 50%. -Next, target the element with the class heart (just heart) and fill in the transform property. Use the rotate() function with -45 degrees. (rotate() works the same way that skewX() and skewY() do). +Next, target the element with the class heart (just heart) and fill in the transform property. Use the rotate() function with -45 degrees. Finally, in the heart::before selector, set its content property to an empty string.