Center align form

  • juicebureau
    Asked on May 7, 2015 at 1:00 AM
  • Sammy
    Replied on May 7, 2015 at 5:08 AM

    By default the entire form is aligned to the center of the browser page,

    Could you provide more information which aspect you want to be aligned, do you want to do the alignment on a form integrated to your browser.

    If so put the entire iframe in a Div as illustrated in the code below

    <div class="centerMe">Form Here</div>

    .centerMe {
      margin: 0 auto;
    }