for what colspan ?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

for what colspan ??

14th Jun 2016, 10:16 PM
Omar
Omar - avatar
2 Answers
0
Add or delete give the same result? In addition, if he raised the value of the score remained unchanged too!
14th Jun 2016, 11:20 PM
Omar
Omar - avatar
0
<!DOCTYPE html> <html> <head> <title>Page Title</title> <style> table, th, td { border:solid; } </style> </head> <body> <table> <tr> <th colspan=2>col1</th> <th>col2</th> <th>col3</th> </tr> <tr> <td>item1</td> <td>item2</td> <td>item3</td> </tr> </table> </body> </html>
14th Jun 2016, 11:39 PM
Yaroslav Zdyrko
Yaroslav Zdyrko - avatar