Merge pull request #13350 from jamos-tay/fix/remove-extra-close-brace

Remove extra close brace
pull/13360/head
Eric Leung 2017-02-14 09:00:06 -08:00 committed by GitHub
commit c7e4d13d83
1 changed files with 1 additions and 1 deletions

View File

@ -1882,7 +1882,7 @@
"description": [
"The <code>transform</code> property has a variety of functions that lets you scale, move, rotate, skew, etc., your elements. When used with pseudo-classes such as <code>:hover</code> that specify a certain state of an element, the <code>transform</code> property can easily add interactivity to your elements.",
"Here's an example to scale the paragraph elements to 2.1 times their original size when a user hovers over them:",
"<blockquote>p:hover {<br> transform: scale(2.1);}<br>}</blockquote>",
"<blockquote>p:hover {<br> transform: scale(2.1);<br>}</blockquote>",
"<hr>",
"Add a CSS rule for the <code>hover</code> state of the <code>div</code> and use the <code>transform</code> property to scale the <code>div</code> element to 1.1 times its original size when a user hovers over it."
],