Which of the following property is used to change the height of a table?

height
table-height
resize
position-y

The correct answer is A. height.

The height property is used to set the height of an element. It can be used to set the height of any element, including tables. The height property can be set in pixels, percentages, or ems.

The table-height property is not a valid CSS property.

The resize property is used to allow an element to be resized by the user. It can be used to resize any element, including tables. The resize property can be set to either “yes” or “no”.

The position-y property is used to set the vertical position of an element. It can be used to position any element, including tables. The position-y property can be set in pixels, percentages, or ems.

Here is an example of how to use the height property to set the height of a table:

“`html

This is a table

“`

In this example, the height of the table is set to 100px. This means that the table will be 100px tall.