Align an image placed as "list-style-image" with the <li> text

Asked

Viewed 33 times

1

I added an image next to the list through "list-style-image" and the result was misaligned (image 1). How can I align this image with the texts of li as well as image 1, that is, in the center of the text.

.topicos li {
    font-weight: 500;
    font-size: 18px;
    color: #7B7A7A;
    padding-top: 35px;
    padding-left: 20px;

}

ul {
    list-style-image: url('arrow.png');
    padding-left: 56px;
}
<ul class = 'topicos'>
                        <li>Entender e priorizar os processos e necessidades da sua empresa e como a Cizino pode ajudar;</li>
                        <li>Mostrar na prática como nossa plataforma de gestão funciona;</li>
                        <li>Tirar toda e qualquer dúvida sobre nossos produtos;</li>
                        <li>Discutir planos, preços, projetos e tudo que for necessidade da sua empresa.</li>
                    </ul>
inserir a descrição da imagem aqui inserir a descrição da imagem aqui

  • I think even trying to style ::marker {} will not scroll, better you use the image as a pseudo element of li, or use the img as background of li, and controls the size and position with the background attributes

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.