Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<html>
<head>
<style>
.grid-lanes {
display: grid-lanes;
width: 400px;
gap: 10px;
grid-template-columns: 60px 1fr;
}
span { border: 1px solid; }
</style>
</head>
<body>
<div class="grid-lanes">
<span>column1</span>
<span>column2</span>
</div>
</body>
</html>