Question

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

Was it helpful?

Solution

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%;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top