Which of the following is the standard text flow kind of positioning you get automatically when you don't apply any CSS positioning of your own?
A. Static positioning
Which positioning method anchors an element to the viewpoint so it never moves, even when the user scrolls up and down the page?
C. Fixed positioning
Suppose you use position;relative to position an element. set top:-10px and left:-10px. Which of the following best describes where that element would end up?
B. Ten pixels up and to the left of whatever it would fall naturally in the text flow
If the code for an element states position:fixed;bottom:0;right:0; where will that element be located?
C. The bottom right corner of the viewport
Suppose you design and position four divs such that they overlap one another. You put the code for Div1 first in the page, then the code for Div2, then the code for Div3, and at the bottom, you put the code for Div4. In the browser, which of the divs will be on the top of the stack?