2
I have tried every type of style and could not. I want to create two columns in pdf.
   $html .= "<div class='row'>
                <span>INFORMAÇÕES DO COORDENADOR DO PROJETO</span>
                <hr></hr>
                <div>
                  <table>
                    <tbody>
                      <tr>
                        <td>Nome:</td>
                        <td>". $projeto->coordenador ."</td>
                      </tr>
                      <tr>
                        <td>CPF:</td>
                        <td>". $projeto->cpf ."</td>
                      </tr>
                      <tr>
                        <td>Sexo:</td>
                        <td>". $projeto->sexo ."</td>
                      </tr>
                      <tr>
                        <td>Telefone:</td>
                        <td>(00) 0000-0000,</td>
                        <td>(00) 0000-0000,</td>
                        <td>(00) 0000-0000</td>
                      </tr>
                    </tbody>
                  </table>
                </div>
                <div>
                  <table style='padding-top: -80px; padding-left: 50%;'>
                    <tbody>
                      <tr>
                        <td>Titulação:</td>
                        <td>Mestre</td>
                      </tr>
                      <tr>
                        <td>E-mail:</td>
                        <td>". $projeto->email ."</td>
                      </tr>
                      <tr style='display:table;'>
                        <td>Link Curriculo Lattes:</td>
                        <td>". $projeto->link ."</td>
                      </tr>
                    </tbody>
                  </table>
                </div>
              </div>";
In the first table I did not put style. Already in the second yes. I used Padding.
style='padding-top: -80px; padding-left: 50%;'
There’s a way to do that?


Mark... From a read on this page MCVE. Have you tried something? You made a mistake? Which one? Post what you were able to do so that other colleagues can help you.
– Fernando A.W.
You are using bootstrap ?
– Gabriel Rodrigues
@Gabrielrodrigues no, but I tried to use his grid and could not.
– Marco Aurélio