Complete the code to set the position of the element to static.
div {
position: [1];
}The position property set to static means the element follows the normal flow of the page.
Complete the code to reset the position of the element to static, overriding any other position.
.box {
position: [1];
}Setting position: static; resets the element to normal flow, ignoring offsets.
Fix the error in the CSS to make the element use static positioning.
#header { position: [1]; }
The correct spelling is static. Misspelled values cause the browser to ignore the rule.
Fill both blanks to create a CSS rule that sets position to static and adds a background color.
.container {
position: [1];
background-color: [2];
}Setting position: static; keeps normal flow. Adding background-color: lightblue; colors the container softly.
Fill all three blanks to create a CSS rule that sets position to static, width to 100%, and text alignment to center.
.header {
position: [1];
width: [2];
text-align: [3];
}position: static; keeps normal flow. width: 100%; makes the element full width. text-align: center; centers the text inside.