HTML CSS Form - How to center the form on the page?

前端 未结 4 999
时光取名叫无心
时光取名叫无心 2021-01-27 18:05

I made a form and I am trying to center it on page but it doesn\'t work. I tried applying these 2 CSS to it but it didn\'t work.

form{margin: 0 auto;}

form{marg         


        
4条回答
  •  无人共我
    2021-01-27 18:45

    You need to do two things to achieve this:

    1) Change inline-block display on the form to be block.
    2) Fix the width (you currently have it as auto).

    Demo: http://jsfiddle.net/bMf9M/2/


    Or if you don't want to fix the form size, you can use text-align: center (Thanks @donderpiet)

    Demo: http://jsfiddle.net/bMf9M/4/

提交回复
热议问题