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

[Dúvida] DUVIDA EM HTML

Bom dia estou fazendo o desafio 7daysofcode e não estou conseguindo alinhar a imagem.

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    width: 100%;
    height: 100vh;
    font-family: 'Inter';
    font-style: normal;
  }
:root {
    --text-color: #667085;
    --main-color: #8E2424;
}

header {
    margin: 15px;
    height: 5%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-around;
    top: 0;
}

.nav-imagens {
    display: flex;
    cursor: pointer;
}

.nav-imagens h1 {
font-weight: 500;
font-size: 18px;
line-height: 24px;
color: #3A404E;
margin: 5px;
cursor: pointer;
}

.nav-menu a {
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #667085;
text-decoration: none;
margin: 1em;
}

.entrar {
background: none;
border: none;
margin: 2em;
}

.cadastrar {
padding: 10px 18px;
gap: 8px;
background: #8E2424;
border: 1px solid #8E2424;
box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
border-radius: 8px;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #FFFFFF;
}

.nav-menu a:hover {
color:     #000000;
font-size: 20px;
cursor: pointer;
}

.entrar:hover {
color:     #000000;
font-size: 15px;
text-decoration: underline;
cursor: pointer;
}

.cadastrar:hover {
transform: scale(1.1);
cursor: pointer;
transition: 0.3s;

}

.estatisticas {
width: 80%;
margin: 0 auto;
padding: 50px 0;
display: flex;
text-align: center;
gap: 4em;

}

.div-e {
flex-direction: column;
text-align: center;
}

.div-e h1, h2 {
padding: 0 0 10px 0 ;
}

.estatisticas h1 {
font-weight: 600;
font-size: 60px;
line-height: 72px;
letter-spacing: -0.02em;
color: #8E2424;
}

.estatisticas h2 {
    font-weight: 1000;
    font-size: 18px;
    line-height: 28px;
    color: #101828;
}

.estatisticas p {
font-weight: 400;
font-size: 16px;
line-height: 24px;
color: #667085;
}

.sobre-nos {
display: flex;
flex-direction: column;
align-items: center;
padding: 96px 0px;
gap: 24px;
background: #FFFFFF;
}

.h1-sobrenos {
font-weight: 600;
font-size: 20px;
line-height: 24px;
color: #8E2424;
}

.h2-sobrenos {
font-weight: 600;
font-size: 48px;
line-height: 60px;
letter-spacing: -0.02em;
color: #101828;
align-items: center;
}

.p-sobrenos {
font-weight: 400;
font-size: 20px;
line-height: 30px;
text-align: center;
color: #667085;
flex: none;
order: 0;
flex-grow: 0;
}

.info-vagas h1, h2, h3 {
   text-align: center;
   padding: 10px
}

.info-vagas h1 {
font-weight:800;
font-size: 14px;
line-height: 20px;
color: #8E2424;
}

.info-vagas h2{
font-weight: 600;
font-size: 36px;
line-height: 44px;
color: #101828;
}

.info-vagas h3{
font-weight: 400;
font-size: 20px;
line-height: 30px;
color: #667085;
}

.info-vagas img {
    align-items: center;
}

Segue o print do html pois não consegui mandar escrito por conta do limite de caracteres.

3 respostas

Opa, tenta colocar uma imagem de como está o site, fica melhor pra entender.

Insira aqui a descrição dessa imagem para ajudar na acessibilidade

solução!

Opa Igor, tudo certo?

align-items é uma propriedade que só funciona para elementos com display: grid e display: flex.

Troque

.info-vagas img {
    align-items: center;
}

Por

.info-vagas img {
    margin-left: auto;
    margin-right: auto;
    display: block
}

Quando usamos margin: auto, o elemento tenta se distanciar o máximo possível daquela direção. Quando você coloca no lado direito e esquerdo, ele se distancia desses lados e acaba no centro.

Mas lembre-se, o valor padrão de display da tag img é inline, que não permite o uso de margens. Portanto, é necessário colocar display: block.

Se não funcionar, cole também o HTML para ficar mais fácil de reproduzir.