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 can be used to specify the width, style, and color of the border.
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.