0
How will be the code?
10 Respuestas
+ 3
The problem is your use of rowspan and colspan. Since you do not include the other cells the browser takes a quess of what should go where.
Hope this helps
https://code.sololearn.com/Wqm26XLXLE7q/?ref=app
+ 1
Yes but not clear what you want.
You have already written code.
+ 1
Perhaps you wanted to achieve this:
<table border="2" cellspacing="5" cellpadding="10">
<tr>
<td colspan="4">A</td>
</tr>
<tr>
<td colspan="2">B</td>
<td rowspan="3">C</td>
<td rowspan="2">D</td>
</tr>
<tr>
<td rowspan="3">E</td>
<td rowspan="3">F</td>
</tr>
<tr></tr>
<tr></tr>
<tr>
<td rowspan="2">G</td>
</tr>
<tr></tr>
<tr>
<td>End</td>
</tr>
</table>
0
Like the one you linked.
Is the question correct?
0
I think correct
0
Tanvir
What is your expectation because according to code output is right
0
A͢J { Challenge Accepted } The cell contains 'END' supposed to be in 4th row but its not
0
Tanvir If you could just edit your question and write something clear...
0
Chris Coder thnx for ur opinion.
Emerson Prado thnx for try to help. I think I got my answer
- 1
A͢J { Challenge Accepted } The output of written code is unexpected. I write the code right though. Pls check the output