Complete the code to set the font size to 12 pixels.
p { font-size: 12[1]; }The px unit sets the font size in pixels, which is an absolute unit.
Complete the code to set the width of the box to 5 centimeters.
.box { width: 5[1]; }The cm unit stands for centimeters, an absolute length unit.
Fix the error in the code to set the margin to 1 inch.
div { margin: 1[1]; }The in unit stands for inches, an absolute unit used for lengths.
Fill both blanks to set the border width to 10 points and padding to 20 millimeters.
div { border-width: 10[1]; padding: 20[2]; }pt means points, often used for borders. mm means millimeters, used here for padding.
Fill all three blanks to set height to 3 inches, width to 7 centimeters, and font size to 14 points.
section { height: 3[1]; width: 7[2]; font-size: 14[3]; }Height uses inches (in), width uses centimeters (cm), and font size uses points (pt).
