Default for positioning properties is not 0 but initial. Specifying `relative top initial` produces: ``` position: relative; top: 0; initial: 0; ``` instead of ``` position: relative; top: initial; ```