Test Review

What CSS3 property should you use if you want to allow the user to control the dimensions of an element (such as the div element)?

A. The resize property.

B. The transform property.

C. The box-sizing property.

D. The appearance property.

The resize property defines if (and how) an element is resizable by the user.

The transform property lets you rotate, scale, skew, or translate an element.

The box-sizing property defines how the width and height of an element are calculated: should they include padding and borders, or not.

The appearance property is used to display an element using a platform-native styling based on the users' operating system's theme.