mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 11:05:06 +00:00

This fixes regression introduced in
c03e025a32
by assuming that it is
possible to determine whether identifier stands for line or area
during parsing.
14 lines
No EOL
326 B
HTML
14 lines
No EOL
326 B
HTML
<style>
|
|
* {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
.grid-container {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, [name1] 50px [name2] 100px);
|
|
}
|
|
|
|
.a {
|
|
grid-column-start: name2
|
|
}
|
|
</style><div class="grid-container"><div class="a">1</div><div>2</div><div>3</div><div>4</div></div> |