To display table without borders the syntax can be as ____
Answers
Answered by
2
Answer:
border: 0px;
<table style='border:0px' >
Explanation:
Answered by
1
To display table without borders the syntax can be as <Table border="0">
Explanation:
Table tag is a html tag which is used to create a table for some data which represents the data in form of row and columns. The syntax to represent the data in table is as follows--
<Table border="2">
<TR><TD> row1</TD><TD> row2</TD></TR><TR><TD> row1</TD><TD> row2</TD></TR>
</Table>
In the above code, the <TD> tag is used for row and <TR> tag is used for column and row1 and row2 are the data. The border attributes defines the border for table. If a user wants to create this table without border then the border attributes contains the value 0.
Learn More:
- Html tags for a table: https://brainly.in/question/1596230
- create tables in HTML : https://brainly.in/question/1511475
Similar questions