Page 1 of 1

Horizontal separation in tables

Posted: Mon Apr 01, 2024 8:56 am
by Oleksandr
Good day.
Tell me how to divide the cell of the table horizontally

Re: Horizontal separation in tables

Posted: Mon Apr 01, 2024 9:15 am
by Pablo
I assume you mean vertically merging? This is not supported.

Re: Horizontal separation in tables

Posted: Mon Apr 01, 2024 9:29 am
by Oleksandr
I need to make it possible to create a table title row for two or more cells that summarizes them like the following
<table style="position:absolute;width:168px;height:168px;" id="periodichnijTable3">
<tr>
<td colspan="2" class="cell0"><p style="font-family:Arial;"><span style="font-family:arial;">&nbsp; </span></p></td>
</tr>
<tr>
<td class="cell1"><br></td>
<td class="cell2"><br></td>
</tr>
</table>

Re: Horizontal separation in tables

Posted: Mon Apr 01, 2024 10:15 am
by Pablo
This can be done with 'merge'

Re: Horizontal separation in tables

Posted: Mon Apr 01, 2024 10:21 am
by Oleksandr
how to do it right
when selecting cells that are one under the other, the union is not active

Re: Horizontal separation in tables

Posted: Mon Apr 01, 2024 10:27 am
by BaconFries
Have you read the following Tables

Re: Horizontal separation in tables

Posted: Mon Apr 01, 2024 11:22 am
by Pablo
You wrote that you want to merge two horizontal cells (to create colspan).
- select the two cells
- click 'merge'

As previously mentioned, rowspan is not supported.

Re: Horizontal separation in tables

Posted: Mon Apr 01, 2024 11:25 am
by Oleksandr
read
There must be some way to do what I need
i need to do a concatenation between rows

Re: Horizontal separation in tables

Posted: Mon Apr 01, 2024 11:50 am
by Pablo
You can only merge table cells horizontally.

Just like in the code you included in your previous message.

Code: Select all

I need to make it possible to create a table title row for two or more cells that summarizes them like the following
<table style="position:absolute;width:168px;height:168px;" id="periodichnijTable3">
<tr>
<td [b]colspan="2"[/b] class="cell0"><p style="font-family:Arial;"><span style="font-family:arial;">&nbsp; </span></p></td>
</tr>
<tr>
<td class="cell1"><br></td>
<td class="cell2"><br></td>
</tr>
</table>