mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 19:27:36 +00:00
17 lines
No EOL
324 B
HTML
17 lines
No EOL
324 B
HTML
<style>
|
|
.grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
.test {
|
|
grid-column: 1 / span 2;
|
|
grid-row: 1;
|
|
background: red;
|
|
}
|
|
.big-child {
|
|
width: 500px;
|
|
height: 100px;
|
|
}
|
|
</style><div class="grid"><div class="test"><div class="big-child"></div></div></div> |