attribute of <table> tag that is used to specify border thickness is called
Answers
Answered by
3
Answer:
Colspan and Rowspan
Explanation:
The attribute of <table> tag which we use to specify the thickness of the border of the table. These attributes are called Colspan (for column wise) and Rowspan (for row wise).
- Colspan : The use of the colspan as an attribute in table to increase the size of the cell vertically in column wise.
- Rowspan : The use of the rowspan as an attribute in table to increase the size of the cell horizontally in row wise.
- Align : The use of align is to specifies the alignment of the table of the border.
- Cell Spacing : The use of cell spacing is to specify the extra space between the adjacent cells.
- Cell Padding : The use of the cell padding is to specify the extra space around the content of the cells.
As we know that, we are using border = "2" like this to increase the size of the border.
Here is the syntax of HTML code for thickness of the border.
Syntax :
<HTML>
<HEAD>
<TITLE>Border</TITLE
</HEAD>
<BODY>
<TABLE BORDER = "2">
<TR>
<TH>Months</TH>
<TH>Savings</TH>
</TR>
<TR>
<TD>May</TD>
<TD>Rs.1779/-</TD>
</TR>
<TR>
<TD>June</TD>
<TD>Rs.1845</TD>
</TR>
</TABLE>
</BODY>
</HTML>
Note: Output of this code in the attachment.
Learn more from this link here:
https://brainly.in/question/7533033
#Be Brainly
Attachments:
Similar questions