1
resposta

Função justify-self:

Não estou conseguindo que a minha função justify-self: ; funcione, ja digitei varias vezes e não esta funcionando

.cartao__botao{ display: flex; justify-content: center; align-items: center; background-color: #0480DC; width: 40px; height: 40px; border-radius: 10px; font-size: 0.9rem; justify-self: flex-end; }

1 resposta

O justify-self ele não funciona no elemento pai, ele é um propriedade que você declara no elemento filho.

E.:

ul {
    display: flex;
    justify-content: center;
    width: 50%
}

li {
    justify-self: flex-end;
}

https://www.alura.com.br/artigos/css-guia-do-flexbox?gclid=CjwKCAiA4KaRBhBdEiwAZi1zzuKdGr7F_ClO3Fvaq5bjUr7XcIwEr4GBFx4R3UcfA9X50ceHr6RM_xoC8K8QAvD_BwE