M
M
Maxim2015-10-23 13:11:13
css
Maxim, 2015-10-23 13:11:13

table in html?

67973acc7afa42538186521e73daf772.png
4 and 5 are the rows of the table,
1, 2, 3 are the columns,
Is it possible to arrange the 3rd column as in the picture? (for the entire width of the row under the rest)

Answer the question

In order to leave comments, you need to log in

6 answer(s)
H
hjk, 2015-10-23
@hjk

I don't know if there is a nice way. Why is this option unsatisfactory? codepen.io/anon/pen/ZbrxKN

Z
zooks, 2015-10-23
@zooks

The flow of the document is broken, so in addition to CSS, JavaScript comes in handy here.

O
Optimus, 2015-10-23
Pyan @marrk2

You can, open the WISYWING editor in 5 minutes, you will draw such

V
Vladislav Startsev, 2015-10-23
@esvlad

It turns out in the fourth line another table of 2 rows and 3 columns,
something like this:

<table border="1" cellpadding="1" cellspacing="1" style="width:500px">
  <tbody>
    <tr>
      <td colspan="3">&nbsp;</td>
    </tr>
    <tr>
      <td colspan="3">
      <table border="1" cellpadding="1" cellspacing="1" style="width:500px">
        <tbody>
          <tr>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
            <td>&nbsp;</td>
          </tr>
          <tr>
            <td colspan="3">&nbsp;</td>
          </tr>
        </tbody>
      </table>
      </td>
    </tr>
    <tr>
      <td colspan="3">&nbsp;</td>
    </tr>
  </tbody>
</table>

O
Oleg, 2015-10-23
@Screpka

codepen.io/Screpka/pen/XmZEEJ or so, crooked, but there is simply no time for "beautiful".

S
Saboteur, 2015-10-23
@saboteur_kiev

use colspan

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question