Using negative integers with implicit rows in CSS Grid
问题 I am trying to make a simple sidebar layout with a flat HTML structure, in which the first <aside> element fills in the 1st column completely. My problem is, that the negative row end value seems to not work for the implicitly created rows for all my elements in the 2nd column. Expected: Actual: Below is a runnable code snippet that illustrates the problem. article { display: grid; grid-template-columns: 200px 1fr; background: gray; } aside { grid-row: 1/-1; grid-column: 1/2; background: pink