+ 1
In my code I'm trying to make "Yellow" span two rows to match what I did with "orange"
When I go into my code and say ``` <td rowspan="2">Yellow</td> ``` it doesn't span two rows like I want it to. I want it to be spread out vertically like orange is. Here's the code typed out and the link is at the bottom ``` <table border="1"> <tr> <td>Red</td> <td>Blue</td> <td>Green</td> </tr> <tr> <td rowspan="2">Yellow</td> <td colspan="2" rowspan="2">Orange</td> </tr> <tr> <td><br/></td> </tr> </table> https://code.sololearn.com/WDv8sf04a7a0
2 odpowiedzi
+ 1
Hi, look, I hope this will provide the solution.
https://code.sololearn.com/W8MYaBHn8O66/?ref=app
+ 1
I still want the yellow to only span one column but span 2 rows. Also, explain how adding size affected the boxes