Avatar of David Schure
David Schure

asked on 

Text and link won't center in Modal-Footer

The text and link won't align on the footer.

https://www.audiodigz.com/BigPractice.html      Click on Log In
<div class="modal-footer">
                    Don't have an account yet?&nbsp;&nbsp;                                 
                    <a href="/CLIENT/registration.php">Create an account</a>
                    </div>

Open in new window

.modal-footer {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
      align-items: center;
           -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 1rem;
        border-top: 1px solid #e9ecef;
      }

      .modal-footer > :not(:first-child) {
        margin-left: .25rem;
      }

      .modal-footer > :not(:last-child) {
        margin-right: .25rem;
      }

Open in new window

CSS

Avatar of undefined
Last Comment
David Schure

8/22/2022 - Mon