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 |
Does document.write work in XHTML?
What is a meta word?
What are the frequently useful api in html5?
What is the difference between nav and div?
Is xhtml a programming language?
What is html lang en?
What do you mean by html?
What is the purpose of header and footer tags?
How will you align a table to the right or left?
Does html needs complier?
Explain autocomplete attribute of html5?
How can I require that fields be filled in, or filled in correctly?