How can you have different number of cells for each row of
a table?
Answers were Sorted based on User's Feedback
Answer / todd vernon
By using the COLSPAN attribute of the <TD> tag.
Example:
<TABLE>
<TR>
<TD>Column 1</TD>
<TD>Comumn 2</TD>
</TR>
<TR>
<TD COLSPAN = "2">Column1 & Column 2</TD>
</TR>
</TABLE>
Is This Answer Correct ? | 9 Yes | 6 No |
Answer / rakesh
<TABLE>
<TR>
<TD> </TD>
<TD> </TD>
</TR>
<TR>
<TD> </TD>
<TD> </TD>
</TR>
</TABLE>
Is This Answer Correct ? | 2 Yes | 7 No |
What is div short for?
How can I use tables to structure forms?
What is dhtml with example?
How do you use a br tag?
What is the difference between <strong>, <b> tags and <em>, <i> tags?
What is innerhtml?
What is the relation between xhtml and the web?
How do I find the url for my email?
Does html5 work on internet explorer?
What are html5 tags?
What is a tag in html?
What is the significance of <head> and <body> tag in HTML?