Which of the following property is used to specify table borders in CSS?

table
border
table:border
none of the mentioned

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 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.