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