static & relative

The default is static — elements sit where flow puts them. With relative you can nudge an element a bit, while leaving its original space reserved.

Step 1 of 4

static is the default — and that is fine

Every element in HTML starts with position: static. That just means the element follows normal flow — no special treatment. Most elements on most pages are static. You will never write position: static in your own code, but you should know the value exists because it is the value you might need to reset to.

Static elements ignore top, right, bottom, left, and z-index. Those properties only do anything once the element is positioned (relative, absolute, fixed, or sticky).

Learn more on MDN