Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In CSS, what is the difference between static (default) positioning and relative positioning?

share|improve this question
3  
A difference is that you frequently type position: relative, and you never type position: static :) – thirtydot Feb 16 '11 at 0:42

4 Answers

up vote 15 down vote accepted

Static positioning is the default positioning model for elements. They are displayed in the page where they rendered as part of normal html flow. Staticly positioned elements don't obey left, top, right and bottom rules.

Relative positioning allows you to specify a specific offset (left, top etc) which is relative to the containing element. So if I have a textbox inside a div I could apply relative positioning on the textbox to have it display at specific place within that div.

There is also absolute positioning - whereby you specify the exact location of the element relative to the entire document, or the next relatively positioned element further up the element tree.

And lastly there is fixed. Fixed positioning restricts an element to a specific position in the viewport, which stays in place during scroll.

With absolute positioning and fixed positioning, the elements are taken out of html flow.

share|improve this answer
2  
Good answer, but (for relative position) isn't the offset based on the normal position of the element? – Baztoune Feb 16 '11 at 0:57

You can see a simple overview here: http://www.w3schools.com/Css/pr_class_position.asp

Also, if I recall correctly, when declaring an element relative, it will by default stay in the same place as it otherwise should, but you gain the ability to absolutely position elements inside it relatively to this element, which I've found very useful in the past.

share|improve this answer
4  
w3schools... I won't downvote this but you must live with the shame. – Myles Gray Feb 16 '11 at 13:14

Position relative lets you use top/bottom/left/right for positioning. Static won't let you do this unless you use margin parameters. There's a difference between Top and margin-top.

You won't need to use static much as it's default

share|improve this answer

Relative position is relative to the normal flow. The relative position of that element (with offsets) is relative to the position where that element would have been normally if not moved.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.