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:
committed by
mrugesh mohapatra
parent
d3f6e0fe94
commit
6e3da1c4b3
@ -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> transform:scale(2);<br>}</blockquote>
|
||||
<blockquote>p {<br> transform: scale(2);<br>}</blockquote>
|
||||
</section>
|
||||
|
||||
## Instructions
|
||||
|
Reference in New Issue
Block a user