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

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

    Like this

    demo

    css

        body {
        background-color : #484848;
        margin: 0;
        padding: 0;
    }
    h1 {
        color : #000000;
        text-align : center;
        font-family: "SIMPSON";
    }
    form {
        width: 300px;
        margin: 0 auto;
    }
    

提交回复
热议问题