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

Migrated - HC || Align 2 form fields horizontally

HC || Align 2 form fields horizontally

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

Align 2 form fields horizontally

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

    form div {
        width: 100%;
    }

    /* replace "1" with the number of the first field that you want to align horizontally */
    .form>*:nth-child(1),
    /* replace "2" with the number of the second field that you want to align horizontally */
    .form>*:nth-child(2){
        width: 47%;
    }
}
</style>
<!-- End "Align 2 form fields horizontally" || Help center -->