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 strong tag in html?
Which tag is used to insert images into your web page?
How do you turn on html5 on safari?
What is the code for change every 3rd li color of ul with css.
What is iframes? Why is recommended to avoid iframes?
What is the difference between html4 and 5?
Explain HTML blocks?
How do you spell lable or label?
What are types of tags in html?
How to redirect using HTML?
What are the different types of Headings supported by HTML?
What is the use of Canvas element?