Skip to content

Instantly share code, notes, and snippets.

@chriscoyier
Created September 29, 2019 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save chriscoyier/4ad9f538728c677eae54e988329feef6 to your computer and use it in GitHub Desktop.
Save chriscoyier/4ad9f538728c677eae54e988329feef6 to your computer and use it in GitHub Desktop.

The top property in CSS goes hand in hand with positioning. By default, elements are static positioned in which the top property has no effect whatsoever. But when the positioning of an element is relative, absolute, or fixed, the top value plays a big role.

div {
  top: value (px, em, %, pt, etc) || auto || inherit;   /* can be negative */
}

The value for top is any of the valid lengths of CSS.

"The Nudge" (Relative Position)

If you apply a top value to an element with relative positioning, it will "nudge" the element that direction.

Negative values will "pull" the element in that direction.

If you apply both a top and bottom value, only the top value will be honored.

"The Place" (Absolute/Fixed Position)

If you apply a top value to an element with relative positioning, it will "place" that element at that value according to its nearest positioning context (meaning: it's nearest parent element with some positioning value other than static, or the document itself).

Note that if you apply both a top and bottom value, it will stretch the element to hit both of those values.

Browser Support

Chrome Safari Firefox Opera IE Android iOS
Works Works Works 5+ 5.5+ Works Works
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment