Table Colspan and Rowspan Tags in Hindi and English
HTML Table Colspan and Rowspan Tags
जब हम Table में Data को
एक से अधिक Rows और Columns में लिखना चाहते है। तो इसके लिए हमें colspan और
rowspan Attributes का इस्तेमाल करना पडता है।
When we want to write
data in more than one row and column in the table. So for this we have to use
colspan and rowspan attributes.
Colspan Attribute
दो या अधिक Columns को
Merge करके एक Column बना देता है।
Merges two or more
columns to form a single column.
Rowspan Attribute
दो या अधिक Rows को
Merge करके एक Row बना देता है।
Merges
two or more rows to form a single row.
Example-
<html>
<head>
<title>Colspan
and Rowspan Table Example</title><body>
<table
border="1″ bordercolor="red" width="300″
height="200″>
<tr>
<th>First
Name</th>
<th>Last
Name</th>
<th>City</th>
</tr>
<tr>
<td>Rahul</td>
<td>Gautam</td>
<td
rowspan="2″>Delhi</td>
</tr>
<tr>
<td>Subodh</td>
<td>Kumar</td>
</tr>
<td
colspan="3″>Sanjay</td>
</tr>
</table>
</body>
</html>
Preview
First Name |
Last Name |
City |
Rahul |
Gautam |
Delhi |
Subodh |
Kumar |
|
Sanjay |
No comments: