[csswg-drafts] Pull Request: [css-grid-1][css-grid-2] Use `body` in example 9

SiarheiBobryk has just submitted a new pull request for https://github.com/w3c/csswg-drafts:

== [css-grid-1][css-grid-2] Use `body` in example 9 ==
Use the body element because it has used as a grid container in the
example above:

```
body { display: grid;
        grid: "h h h"
              "a b c"
              "f f f";
        grid-template-columns: auto 1fr 20%; }
article { grid-area: b; min-width: 12em;     }
nav     { grid-area: a; /* auto min-width */ }
aside   { grid-area: c; min-width: 12em;     }
```

This change makes these examples much more clear.

See https://github.com/w3c/csswg-drafts/pull/6037


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Wednesday, 24 February 2021 20:40:36 UTC