문제

I am trying to center part of the text on my Mpdf page, but it just won't center.

CSS:

#centrar{
margin-right:auto;
margin-left:auto;
}

html:

<div id='centrar'>
<img src='imagens/logo.png' width='100' height='100'>
<h3>Curriculo</h3>
Nome: $nome $apelido <br>
E-Mail: $email <bR>
Função: $funcao <br>
Área: $area <br>
Chefia: $chefe <br>
</div>

The path to the file is defined correctly.

Is there any other way to center a part of the text?

Thanks

도움이 되었습니까?

해결책

margin: auto won't center an element horizontally unless you also set a width that's less than 100%. E.g.

#centrar{
    margin-right:auto;
    margin-left:auto;
    width: 80%;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top