fix: updated the note sections for responsive web design english (#35528)

This commit is contained in:
rupali317
2019-03-22 22:02:12 +08:00
committed by Oliver Eyton-Williams
parent 6d43682397
commit bc72c86dc6
26 changed files with 27 additions and 28 deletions

View File

@ -9,7 +9,7 @@ videoUrl: 'https://scrimba.com/p/pVaDAv/cBEkbfJ'
<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.
<strong>Note</strong><br>The default value for the <code>flex-direction</code> property is <code>row</code>.
<strong>Note:</strong> The default value for the <code>flex-direction</code> property is <code>row</code>.
</section>
## Instructions