Open
Description
reduction:
<!DOCTYPE html><style>
#grid {
display: grid;
}
#test-item-overlapping-green {
background-color: green;
order: 1;
}
#reference-item-overlapped-red {
background-color: red;
}
.first-row-first-column {
grid-area: 1 / 1;
}
.box {
width: 100px;
height: 100px;
}
</style>
<div id="grid">
<div id="test-item-overlapping-green" class="first-row-first-column box"></div>
<div id="reference-item-overlapped-red" class="first-row-first-column box"></div>
</div>