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)"
This commit is contained in:
Martin Payne
2018-10-27 17:52:11 -04:00
committed by mrugesh mohapatra
parent d3f6e0fe94
commit 6e3da1c4b3

View File

@ -8,7 +8,7 @@ videoUrl: 'https://scrimba.com/c/c2MZVSg'
## Description
<section id='description'>
To change the scale of an element, CSS has the <code>transform</code> property, along with its <code>scale()</code> function. The following code example doubles the size of all the paragraph elements on the page:
<blockquote>p {<br>&nbsp;&nbsp;transform:scale(2);<br>}</blockquote>
<blockquote>p {<br>&nbsp;&nbsp;transform: scale(2);<br>}</blockquote>
</section>
## Instructions