Simplified reduction:
<!doctype html><style>
* { outline: 1px solid black; }
html { background: white; }
body {
display: grid;
grid-template-columns: 1fr [sidebar] 500px 1fr;
grid-template-rows: [top] 100px [bottom] auto;
background: wheat;
}
.main {
background: pink;
height: 200px;
}
.chessboard {
background: orange;
width: 600px;
height: 100px;
}
.sidebar {
grid-area: top/sidebar;
}
</style>
<body>
<div class="main">
<div class="chessboard"></div>
</div>
<div class="sidebar">hello</div>
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too