Re: [css-grid][editorial] Spec typo in example 5

On 31/03/14 22:02, Tab Atkins Jr. wrote:
> On Tue, Jan 21, 2014 at 3:16 AM, Manuel Rego Casasnovas <rego@igalia.com> wrote:
>> while reading the spec I think I've found a mistake in the EXAMPLE 5:
>> http://www.w3.org/TR/css3-grid-layout/#grid-line-concept
> 
> Thanks! The example was a remnant of an earlier time when the -end
> properties counted from the end.  I've fixed as you suggested.

It still has:
    #item1 { grid-column: 2;
             grid-column-start: 1; grid-column-end: 4; }

Where it should be:
    #item1 { grid-column: 2;
             grid-row-start: 1; grid-row-end: 4; }

Bye,
  Rego

Received on Monday, 31 March 2014 21:10:54 UTC