blob: 87e2a0de775f079326f03299820b65563ac8152b [file] [log] [blame]
<style>
body {
display: grid;
grid-template-columns: 100px 50px;
}
div {
background-color: blue;
}
</style>
<body>
<div>
<span style="background-color: green">1</span>
</div>
<div>
<span style="background-color: red">2</span>
</div>
</body>