Solucionado (ver solução)
Solucionado
(ver solução)
4
respostas

como alinhar com css?

bom como eu fasso para fazer meu input e minha label ficar centralizado no body da pagina e em display um debaixo do outro?

eu tentei mais fica assim!

insira seu código aqui<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <link rel="preconnect" href="https://fonts.gstatic.com">
    <link  rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap">
    <title>formulário-entre-nós</title>
</head>
<body>
    <header>
        <h1>entre nós</h1>
    </header>
    <main>

        <h2>formulário</h2>

        <form class="formulário">
            <div class="campos">
                <label for="nome">nome</label>
                <input type="text" id="nome">
                <label for="e-mail">e-mail</label>
                <input type="email" id="email">
            </div>

        </form>
    </main>

</body>
</html>
insira seu código aquibody{
font-family: 'Dancing Script', cursive;
background-color: pink;
}
h1{
    margin: 30px 30px;
}
h2{
    text-align: center;
    font-size: 60px;
}
label{
    text-align: center;
    display: block;
}
input{
    display: flex;
    align-items: center;
    justify-content: space-between;

}
4 respostas

Boa noite Geovane, blz?

Tenta assim se resolve pra você:

<!DOCTYPE html>
<html lang="pt-br">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">

        <link rel="preconnect" href="https://fonts.gstatic.com">
        <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap">
        <title>formulário-entre-nós</title>

        <style>
            body{
                font-family: 'Dancing Script', cursive;
                background-color: pink;
            }

            h1{
                margin: 30px 30px;
            }

            h2{
                text-align: center;
                font-size: 60px;
            }

            .formulario{
                width: 100%;
                justify-content: center;
                display: flex;
            }
                .formulario form label{
                    display: block;
                }
        </style>
    </head>
    <body>
        <header>
            <h1>Entre nós</h1>
        </header>

        <main>
            <h2>Formulário</h2>

            <div class="formulario">
                <form>    
                    <label for="nome">nome</label>
                    <input type="text" id="nome" name="nome" value="">

                    <label for="email">e-mail</label>
                    <input type="email" id="email" name="email" value="">
                </form>
            </div>
        </main>
    </body>
</html>

Boa tarde Geovane, deu certo?

nossa desculpa não responder não deu certo nãoi fera! `

entre nós

    <h2>formulário</h2>

    <form class="formulário">

            <label for="nome">nome</label>
            <input type="text" id="nome" name="nome">
            <label for="e-mail">e-mail</label>
            <input type="email" id="email" name="email">


    </form>
</main>

body{ font-family: 'Dancing Script', cursive; background-color: pink; } h1{ margin: 30px 30px; } h2{ text-align: center; font-size: 60px; } .formulario{ width: 100%; justify-content: center; display: flex; } .formulario form label{ display: block; } `

solução!

resolvi obrigado!