Jump to content

Recommended Posts

Posted

Salut , dupa cum spune si titlul am nevoie sa pot adauga intr un html doua tabele unul sub altul cu spatiu intre ele de preferat si o linie pe mijloc pentr a putea fii scoase la imprimanta si taiate pe jumate ( o sa atasez o imagine ).

Multumesc anticipat .

tabel..png

Posted

Poți încerca aceasta:

<table>
  <thead>
    <tr>
      <th>Titlu</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Content</td>
    </tr>
  </tbody>
</table>
<hr>
<table>
  <thead>
    <tr>
      <th>Titlu</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Content</td>
    </tr>
  </tbody>
</table>

Sau:

<table style="border-bottom: 1px solid black; padding-bottom: 15px; margin-bottom: 15px;">
  <thead>
    <tr>
      <th>Titlu</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Content</td>
    </tr>
  </tbody>
</table>
<table>
  <thead>
    <tr>
      <th>Titlu</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Content</td>
    </tr>
  </tbody>
</table>

 

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.