From 6e3da1c4b347ec2360928608bc04aaea62033c47 Mon Sep 17 00:00:00 2001 From: Martin Payne Date: Sat, 27 Oct 2018 17:52:11 -0400 Subject: [PATCH] Added a space after css property colon (#29807) I was doing this challenge and noticed that there wasn't a space after "transform:scale(2)" in the description which is inconsistent with the other challenges so I changed it to "transform: scale(2)" --- ...m-scale-property-to-change-the-size-of-an-element.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-css-transform-scale-property-to-change-the-size-of-an-element.english.md b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-css-transform-scale-property-to-change-the-size-of-an-element.english.md index 21dba1ab8d..b1f2d0cd0b 100644 --- a/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-css-transform-scale-property-to-change-the-size-of-an-element.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/applied-visual-design/use-the-css-transform-scale-property-to-change-the-size-of-an-element.english.md @@ -8,7 +8,7 @@ videoUrl: 'https://scrimba.com/c/c2MZVSg' ## Description
To change the scale of an element, CSS has the transform property, along with its scale() function. The following code example doubles the size of all the paragraph elements on the page: -
p {
  transform:scale(2);
}
+
p {
  transform: scale(2);
}
## Instructions