Whats d colspan performance when Coding tables?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Whats d colspan performance when Coding tables??

What dose it do to d table

29th Jul 2020, 11:22 AM
Aibor Ebenezer
Aibor Ebenezer - avatar
2 Answers
+ 1
What do you want to know colspan performance on table? Does it affect the performance of its table?
29th Jul 2020, 11:42 AM
Calviղ
Calviղ - avatar
+ 1
The colspan attribute in HTML specifies the number of columns a cell should span. It allows the single table cell to span the width of more than one cell or column. It provides the same functionality as “merge cell” in the spreadsheet program like Excel. Usage: It can be used with <td> and <th> element while creating an HTML Table. <td>: The colspan attribute when used with <td> tag determines the number of standard cells it should span. Syntax:<td colspan = "value">table content...</td> <th>: The colspan attribute when used with <th> tag determines the number of header cells it should span. Syntax:<th colspan = "value">table content...</th> https://code.sololearn.com/Wh9uAPG29NtF/?ref=app
29th Jul 2020, 11:46 AM
123