Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to center align icon inside button?

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #274247
    tom clack
    Participant

    https://www.w3schools.com/code/tryit.asp?filename=FTCZIK9F0A66

    How to center align icon inside button?

    Text-align:center or line-height:50% not working. How can fix it ? Thank you.

    #274250
    Paulie_D
    Member

    You’re using flexbox on the modal, so use the properties available to you

    .modal-content {
        align-items: center;
        justify-content: center;
    }
    

    That will center the button (no need to use margin at all).

    Centering the X is trickier since you’ve changed the font-size so it’s not related to the size of the circle….but that’s another issue.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.