1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-18 10:55:07 +00:00
serenity/Tests/LibWeb/Layout/input/grid/placement-using-named-tracks-1.html
Aliaksandr Kalenik b66f65dc9e LibWeb: Define if identifier represent area or line during layout [GFC]
This fixes regression introduced in
c03e025a32 by assuming that it is
possible to determine whether identifier stands for line or area
during parsing.
2023-08-28 09:19:41 +02:00

18 lines
No EOL
335 B
HTML

<style>
* {
border: 1px solid black;
}
.grid-container {
display: grid;
grid-template-columns: [a] auto [b] auto;
}
.a {
grid-column-start: a;
}
.b {
grid-column-start: b;
}
</style><div class="grid-container"><div class="a">1</div><div class="b">2</div></div>