Complete the code to set the width of the box to 200 pixels.
div {
width: [1];
}The width property requires a length value with units like px. So 200px is correct.
Complete the code to add 10 pixels of padding inside the box.
div {
padding: [1];
}Padding needs a length value with units, so 10px is correct.
Fix the error in the code to correctly set the margin to 15 pixels.
div {
margin: [1];
}The margin property needs a length with units like 15px. Just 15 is not valid.
Fill both blanks to set the border width to 5 pixels and border style to solid.
div {
border-width: [1];
border-style: [2];
}The border width needs a size with units like 5px, and the border style should be solid to show a solid line.
Fill all three blanks to create a box with width 100px, padding 20px, and margin 30px.
div {
width: [1];
padding: [2];
margin: [3];
}Width is set to 100px, padding to 20px, and margin to 30px to create the desired box spacing.