Skip to content

[css-grid] Fix typo in the grid item placement algorithm #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions css-grid/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -2331,14 +2331,14 @@ Grid Item Placement Algorithm</h3>

: “sparse” packing (omitted ''dense'' keyword)
::
Set the row-start line of its <a>placement</a>
Set the column-start line of its <a>placement</a>
to the earliest (smallest positive index) line index
that ensures this item’s <a>grid area</a> will not overlap any <a>occupied</a> grid cells
and that is past any <a>grid items</a> previously placed in this row by this step.

: “dense” packing (''dense'' specified)
::
Set the row-start line of its <a>placement</a>
Set the column-start line of its <a>placement</a>
to the earliest (smallest positive index) line index
that ensures this item’s <a>grid area</a> will not overlap any <a>occupied</a> grid cells.

Expand Down