table
border
table:border
none of the mentioned
Answer is Wrong!
Answer is Right!
The correct answer is: B. border
The border
property is used to specify the border of an element. It
The table
property is used to specify the properties of a table element. It can be used to specify the width, height, and alignment of the table.
The table:border
property is not a valid CSS property.
Here is an example of how to use the border
property to specify a border for a table:
css
table {
border: 1px solid black;
}
This will create a table with a 1px solid black border.