### Vertical Alignment
-By default, all columns in a flex grid align to the top of their parent. This behavior can be changed with another set of alignment classes. That's right, *middle alignment in CSS*!
+By default, all columns in a flex grid stretch to be equal height. This behavior can be changed with another set of alignment classes. That's right, *middle alignment in CSS*!
Your options for vertical alignment are `top`, `middle`, `bottom`, and `stretch`. Note that we use the word *middle* for vertical alignment, and *center* for horizontal alignment.
Vertical alignment can be applied to a flex parent—which will align all the children automatically—or to a flex child, which will align only that element.
-Top alignment is the default. To set parent alignment, use these classes:
+Stretch alignment is the default. To set parent alignment, use these classes:
+- `.align-top`
- `.align-middle`
- `.align-bottom`
- `.align-stretch`