cancel
Showing results for 
Search instead for 
Did you mean: 

spacing between on page in wbe page composer

former_member248450
Active Participant
0 Kudos

Below is the code, I am using to define a rowspan.

<table width="100%" valign="top" cellspacing="10">

<tbody align="top">

<tr>

<td rowspan="3" width ="20%" valign = "top" cellpadding="20%" >

<div><wpc:container id="m3"/></div>

<div><wpc:container id="m6"/></div>

<div><wpc:container id="m9"/></div>

</td>

</tr>

</table>

But, when I add content to these containers. I don't see cell spacing. Can anyone suggest me. How I have the spacing between them.

Accepted Solutions (1)

Accepted Solutions (1)

vishal_gupta15
Contributor
0 Kudos

Hi,

Try with following code

<table width="100%" valign="top" cellspacing="10">

<tbody align="top">

<tr>

<td rowspan="3" width ="20%" valign = "top" cellpadding="20%" >

<wpc:container id="m3"/>&nbsp &nbsp &nbsp

<wpc:container id="m6"/>&nbsp &nbsp &nbsp

<wpc:container id="m9"/>&nbsp &nbsp &nbsp

</td>

</tr>

</table>

_Vishal

former_member248450
Active Participant
0 Kudos

Thats great. It worked. Thanks Vishal

Answers (0)