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

后端 未结 6 504
粉色の甜心
粉色の甜心 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:13

    Wrap the

    element inside a div container and apply css to the div instead which makes things easier.

    #aDiv{width: 300px; height: 300px; margin: 0 auto;}
    
    
    
    
    
      



    Name :
    Email :
    Password :
    Confirm Password :

提交回复
热议问题