lera.cernolev of Help Center Snippets
1/21/2020 - 7:25 AM

Migrated - HC || Align all fields on 2 columns

HC || Align all fields on 2 columns

https://help.instapage.com/hc/en-us/articles/206118248-How-to-align-your-form-fields-horizontally

Align all fields on 2 columns

<!-- Begin "Align all fields on 2 columns" || Help center -->
<!-- Add to Settings->HTML/CSS->Head -->
<!-- CS:20210225-15-2 -->
<style>
@media screen and (min-width: 768px) {
    form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .form.contents>* {
        width: 47%;
    }
}
</style>
<!-- End "Align all fields on 2 columns" || Help center -->