Good day.
Tell me how to divide the cell of the table horizontally
Horizontal separation in tables
Forum rules
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
IMPORTANT NOTE!!
DO YOU HAVE A QUESTION OR PROBLEM AND WANT QUICK HELP?
THEN PLEASE SHARE A "DEMO" PROJECT.
PLEASE READ THE FORUM RULES BEFORE YOU POST:
http://www.wysiwygwebbuilder.com/forum/viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/getting_started.html
WYSIWYG Web Builder FAQ
Re: Horizontal separation in tables
I assume you mean vertically merging? This is not supported.
Re: Horizontal separation in tables
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;"> </span></p></td>
</tr>
<tr>
<td class="cell1"><br></td>
<td class="cell2"><br></td>
</tr>
</table>
<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;"> </span></p></td>
</tr>
<tr>
<td class="cell1"><br></td>
<td class="cell2"><br></td>
</tr>
</table>
Re: Horizontal separation in tables
This can be done with 'merge'
Re: Horizontal separation in tables
how to do it right
when selecting cells that are one under the other, the union is not active
when selecting cells that are one under the other, the union is not active
- BaconFries
-
- Posts: 5884
- Joined: Thu Aug 16, 2007 7:32 pm
Re: Horizontal separation in tables
Have you read the following Tables
Re: Horizontal separation in tables
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.
- select the two cells
- click 'merge'
As previously mentioned, rowspan is not supported.
Re: Horizontal separation in tables
read
There must be some way to do what I need
i need to do a concatenation between rows
There must be some way to do what I need
i need to do a concatenation between rows
Re: Horizontal separation in tables
You can only merge table cells horizontally.
Just like in the code you included in your previous message.
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;"> </span></p></td>
</tr>
<tr>
<td class="cell1"><br></td>
<td class="cell2"><br></td>
</tr>
</table>