Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE HTML>
<html><head>
<meta charset="utf-8">
<style>
html,body { color:black; background-color:white; padding:0; margin:0; }
.grid {
display:inline-grid;
grid-template-columns:95px 95px 95px 95px;
border:1px solid;
background:yellow;
}
.subgrid {
display:grid;
grid-template-columns:subgrid;
min-height:30px;
}
</style>
</head>
<body>
<div class="grid">
<div class="subgrid" style="margin-left: 10px; column-gap:50px; grid-column:span 3; background:cyan;">
<div class="subgrid" style="margin-right: 20px;column-gap:100px;grid-column:span 2; background:magenta;"></div>
</div>
</div>
</body>
</html>