0
1
iitsdmd
marp
MarkdownThe code above creates a grid with two columns. The first column has a minimum width of 1rem and the second column has a maximum width of 1fr. The gap between the columns is 1rem.
Shortcut: marp2col
---
style: |
.columns {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1rem;
}
---
<div class="columns">
<div>
-
</div>
<div>
&[USER_INPUT2-
</div>
</div>