Is it possible to center a submit button without putting it into a div box

Discussion in 'CSS' started by ketting00, Feb 17, 2016.

  1. #1
    ketting00, Feb 17, 2016 IP
  2. PoPSiCLe

    PoPSiCLe Illustrious Member

    Messages:
    4,623
    Likes Received:
    725
    Best Answers:
    152
    Trophy Points:
    470
    #2
    
    input[type=submit] {
      display:block;
      margin: 0 auto;
    }
    
    Code (markup):
    However, it will only work if you only have one button (or else it will put them on separate lines)
     
    PoPSiCLe, Feb 17, 2016 IP
  3. ketting00

    ketting00 Well-Known Member

    Messages:
    782
    Likes Received:
    28
    Best Answers:
    3
    Trophy Points:
    128
    #3
    Thanks @PoPSiCLe,

    That should do it. I think it'd be better than creating more divs.
     
    ketting00, Feb 17, 2016 IP