How to align form at the center of the page in html/css

后端 未结 6 517
粉色の甜心
粉色の甜心 2021-02-05 13:28

I am new to html/css. i am trying to build up my own form and i am trying to align it in the center. I used the align property in css but its not working.

Html code:

6条回答
  •  花落未央
    2021-02-05 14:18

    I would just use table and not the form. Its done by using margin.

    table {
      margin: 0 auto;
    }
    

    also try using something like

    table td {
        padding-bottom: 5px;
    }
    

    instead of

    and also your input should end with /> e.g:

    
    

提交回复
热议问题