Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
HTML question about rowspan
herald10
Hi,
I have an HTML question. I have a table with three entries.
Some text in the first TD with rowspan=2. An image in the second TD and a table in the last TD. Whats happening is as the text in the first TD grows the table in the last TD goes far away from the image in the second TD. Please see the attached images. The wrong picture shows the current behavior and the desired picture shows the desired behavior.
Thanks a lot
-H
Find more posts tagged with
Comments
gzevin
have you tried to use ALIGN attribute for the image?
Greg Zevin, Ph.D. Comp. Sc.
Independent Interwoven Consultant/Architect
Sydney, AU
herald10
But align attribute for image has only left, right, center options. right? how will that solve my problem?
Heres what I have currently.
Something like
<tr>
<td valign="top" rowspan=2>
Some text.
</td>
<td>
An image
</td>
</tr>
<tr>
<td>
Another table
</td>
</tr>
Thanks
-H
akshathp
can you post complete HTML code for your this page?
Akshat Pramod Sharma
herald10
Thanks to everyone. I was able to fix the error by appending a spacer image to the last TD.