Remove tag characters (#36037)

pull/36040/head
Huyen Nguyen 2019-05-14 01:44:16 +07:00 committed by The Coding Aviator
parent 57762df6f7
commit 791e589c93
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@ videoUrl: 'https://scrimba.com/c/cyLZZhZ'
<section id='description'> <section id='description'>
When you create a variable, it is available for you to use inside the element in which you create it. It also is available for any elements nested within it. This effect is known as <dfn>cascading</dfn>. When you create a variable, it is available for you to use inside the element in which you create it. It also is available for any elements nested within it. This effect is known as <dfn>cascading</dfn>.
Because of cascading, CSS variables are often defined in the <dfn>:root</dfn> element. Because of cascading, CSS variables are often defined in the <dfn>:root</dfn> element.
<code>:root</code> is a <dfn>pseudo-class</dfn> selector that matches the root element of the document, usually the <code><html></code> element. By creating your variables in <code>:root</code>, they will be available globally and can be accessed from any other selector later in the style sheet. <code>:root</code> is a <dfn>pseudo-class</dfn> selector that matches the root element of the document, usually the <code>html</code> element. By creating your variables in <code>:root</code>, they will be available globally and can be accessed from any other selector later in the style sheet.
</section> </section>
## Instructions ## Instructions