@@ -576,10 +576,10 @@ <h3 id=overview><span class=secno>1.1. </span> Overview</h3>
576576 < li > can be laid out in any < a href ="#flex-direction-property "> flow
577577 direction</ a > (leftwards, rightwards, downwards, or even upwards!)
578578
579- < li > can have their visual order < a
579+ < li > can have their display order < a
580580 href ="#flex-flow-row-reverse "> reversed</ a > or < a
581- href ="#order-property "> rearranged</ a > at the style layer (i.e., display
582- order can be independent of source order)
581+ href ="#order-property "> rearranged</ a > at the style layer (i.e., visual
582+ order can be independent of source and speech order)
583583
584584 < li > can be laid out linearly along a single (< a href ="#main-axis "> < i
585585 title ="main axis "> main</ i > </ a > ) axis or < a
@@ -602,26 +602,28 @@ <h3 id=overview><span class=secno>1.1. </span> Overview</h3>
602602 < p > Here's an example of a catalog where each item has a title, an photo,
603603 a description, and a purchase button. The designer's intention is that
604604 each entry has the same overall size, that the photo be above the text,
605- and the purchase buttons aligned at the bottom, regardless of the length
606- of the item's description. Flex layout makes many aspects of this design
607- easy:
605+ and that the purchase buttons aligned at the bottom, regardless of the
606+ length of the item's description. Flex layout makes many aspects of this
607+ design easy:
608608
609609 < ul >
610- < li > The catalog uses flex layout to lay out a row of items horizontally,
611- and to ensure they're all equal-height. Each entry is then itself a
612- column flex container, laying out its contents vertically.
613-
614- < li > Within each entry, content is ordered logically with the title
615- first, followed by the description and the photo. This provides a
616- sensible ordering for speech rendering and in non-CSS browsers. For a
617- more compelling visual presentation, however, ‘< a href ="#order "> < code
618- class =property > order</ code > </ a > ’ is used to pull the image up from
619- later in the content to the top, and ‘< a href ="#align-self "> < code
620- class =property > align-self</ code > </ a > ’ to center it horizontally.
610+ < li > The catalog uses flex layout to lay out rows of items horizontally,
611+ and to ensure that items within a row are all equal-height. Each entry
612+ is then itself a column flex container, laying out its contents
613+ vertically.
614+
615+ < li > Within each entry, the source document content is ordered logically
616+ with the title first, followed by the description and the photo. This
617+ provides a sensible ordering for speech rendering and in non-CSS
618+ browsers. For a more compelling visual presentation, however, ‘< a
619+ href ="#order "> < code class =property > order</ code > </ a > ’ is used to pull
620+ the image up from later in the content to the top, and ‘< a
621+ href ="#align-self "> < code class =property > align-self</ code > </ a > ’ is used
622+ to center it horizontally.
621623
622624 < li > An < a href ="#auto-margins "> ‘< code class =css > auto</ code > ’
623- margin</ a > above the purchase button forces it to the bottom of the
624- entry box, regardless of the height of the description.
625+ margin</ a > above the purchase button forces it to the bottom within each
626+ entry box, regardless of the height of that item's description.
625627 </ ul >
626628
627629 < pre >
0 commit comments