We are trying to implement some “boxes” where to place reusable snippets for a PDF print template.
We thought to use the handy CSS grid functionalities, but it seems that the display: grid has no effect, is there something wrong with the example I am using?
Otherwise, is there a list of HTML\CSS commands Designer supports?
<div class="wrapper">
<div class="box">
A
</div>
<div class="box">
B
</div>
<div class="box">
C
</div>
<div class="box">
D
</div>
<div class="box">
E
</div>
<div class="box">
F
</div>
</div>
/* default.css*/
.wrapper {
display: grid;
grid-template-columns: 100px 100px 100px;
grid-gap: 10px;
background-color: #fff;
color: #444;
}
.box {
background-color: #444;
color: #fff;
border-radius: 5px;
padding: 20px;
font-size: 150%;
}