<!DOCTYPE html><style>
* {
outline: 1px solid black;
}
body {
display: grid;
}
section {
display: grid;
background: pink;
}
#one {
background: green;
}
#two {
height: 100px;
background: orange;
}
</style><body><section><div id="one"></div><div id="two"></div>