+ 1
Tables
what's the benefits of tables
12 Respuestas
+ 16
it displays your data in an organised way
+ 13
Organised data,
And sometimes best representation of any data in comparison to writing that data in texts(paragraphs) 😊
+ 2
thanks
+ 2
hey ola
+ 2
guys can anyone tell me what does colspan attribute does.
+ 1
it can gather all information in one screen rather than two screens
+ 1
Helps to view tables in what ever website you do
0
hey what does colspan does.
0
Jeevan
Colspan used to merge two or more columns to make one row.
<table border="2">
<tr>
<td>Red</td>
</td>Blue</td>
</tr>
<tr>
<td colspan="2"></br></td>
</tr>
</table>
Try it once.hope u understand
0
Hello
0
<table border="2">
<tr>
<td>Red</td>
<td>Blue</td>
<td>Green</td>
</tr>
<tr>
<td><br /></td>
<td colspan="2"><br /></td>
</tr>
</table>
0
For those who are asking what is <span> and <div> allow me to explain
Both of them are used to group some html elements in order to apply CSS to them.In this case <span> is used for inline html elements while <div> is used block html elements.
Hope it's understood