From 13e77a0c96ee7f3e9cd7f24344dc54e938ed7660 Mon Sep 17 00:00:00 2001 From: Manuel Rego Casasnovas Date: Thu, 19 Feb 2015 10:46:08 +0100 Subject: [PATCH] [css-grid] Fix typo in the grid item placement algorithm In the first step, items are locked to a row, so the algorithm should define how to determine the column-start instead of the row-start. --- css-grid/Overview.bs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/css-grid/Overview.bs b/css-grid/Overview.bs index 46085126524..580eaf661b2 100644 --- a/css-grid/Overview.bs +++ b/css-grid/Overview.bs @@ -2331,14 +2331,14 @@ Grid Item Placement Algorithm : “sparse” packing (omitted ''dense'' keyword) :: - Set the row-start line of its placement + Set the column-start line of its placement to the earliest (smallest positive index) line index that ensures this item’s grid area will not overlap any occupied grid cells and that is past any grid items previously placed in this row by this step. : “dense” packing (''dense'' specified) :: - Set the row-start line of its placement + Set the column-start line of its placement to the earliest (smallest positive index) line index that ensures this item’s grid area will not overlap any occupied grid cells.