. . . . . . . . property is used set width and height of images .

check
value
stretch
load picture

The correct answer is C. stretch.

The stretch property is used to set the width and height of an image to the width and height of its container. If the image is larger than its container, it will be stretched to fit. If the image is smaller than its container, it will be centered.

The check property is used to check whether an image is loaded. The value property is used to get the value of an image. The load picture method is used to load an image.

Here is an example of how to use the stretch property:

html
<img src="image.jpg" width="100" height="100" style="width: 100%; height: 100%;" />

In this example, the image will be stretched to fit the width and height of its container.