minor <code> tag fixes (#39046)

This commit is contained in:
Quinn
2020-08-31 00:12:04 -04:00
committed by GitHub
parent fe3f0b2ac4
commit 29ab6c32ec
7 changed files with 8 additions and 8 deletions

View File

@ -14,7 +14,7 @@ The last challenge introduced the <code>align-items</code> property and gave an
## Instructions
<section id='instructions'>
Add the CSS property <code>align-items</code> to the header's <code>.follow-btn</code> element. Set the value to center.
Add the CSS property <code>align-items</code> to the header's <code>.follow-btn</code> element. Set the value to <code>center</code>.
</section>
## Tests

View File

@ -9,7 +9,7 @@ forumTopicId: 301109
## Description
<section id='description'>
The last two challenges used the <code>flex-direction</code> property set to row. This property can also create a column by vertically stacking the children of a flex container.
The last two challenges used the <code>flex-direction</code> property set to <code>row</code>. This property can also create a column by vertically stacking the children of a flex container.
</section>
## Instructions

View File

@ -10,7 +10,7 @@ forumTopicId: 301110
## Description
<section id='description'>
Adding <code>display: flex</code> to an element turns it into a flex container. This makes it possible to align any children of that element into rows or columns. You do this by adding the <code>flex-direction</code> property to the parent item and setting it to row or column. Creating a row will align the children horizontally, and creating a column will align the children vertically.
Other options for <code>flex-direction</code> are row-reverse and column-reverse.
Other options for <code>flex-direction</code> are <code>row-reverse</code> and <code>column-reverse</code>.
<strong>Note:</strong> The default value for the <code>flex-direction</code> property is <code>row</code>.
</section>