You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<meta name="assert" content="Line placement algorithm selects the first matching column when using a grid line name associated to several columns and no integer is specified within the custom-ident.">
<style>
.grid {
display: inline-grid;
background: red;
grid-template-columns: [C] 25px [C] 25px [C] 25px [C] 25px;
grid-auto-rows: 50px;
grid-template-areas: "A1 A2 A3 A4"
". A2 A3 A4";
}
.grid > div { background: green; }
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>