The row and column in web page designing and using help
Hi Experts,
What is the row and column in web page designing? How does it work? Where does it use? Please tell me about details. Is row and column important to web page?
Hi Experts,
What is the row and column in web page designing? How does it work? Where does it use? Please tell me about details. Is row and column important to web page?
Hello Michele r,
Row and column are mainly used in table element in web page designing. Row is shown as the tag is <tr> and closing tag is </tr>. Column is shown as the tag is <td> and closing tag is </td>. Those tags are very much important for using table base web page designing.
Thanks.
Hi,
Rows and Columns are used in web designing for creating table. Rows are spread within<tr>and columns within<td> tag in table.
Some web designers use table to layout the webpage also. Rows contain record of a particular entity in a table and column contain fields.
 | column1 | column2 |
row1 | Â | Â |
row2 | Â | Â |
row3 | Â | Â |
Hope this will help you
Hello,
Table in webpage is an important element for web designing. Row and column are the element of table. It is important to show a list of thing in webpage. There is a sample of table row and column in webpage,
<table>
<tr>
<td>
</td>
</tr>
</table>
Thanks