Видеоответы на вопросы по Tilda

Как выстроить галочки формы в колонки в Тильда - Live-CSS-11

<style>
.uc-radio-form .t-checkboxes__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.uc-radio-form .t-checkboxes__wrapper label {
    margin-right: 10px;
}
</style>



<style>
.uc-radio-form .t-checkboxes__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: repeat( auto-fill , minmax( 200px , 1fr ) );
}
</style>
Made on
Tilda