In CSS, what is the difference between static (default) positioning and relative positioning?
|
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 Relative positioning allows you to specify a specific offset ( 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. |
|||||
|
|
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. |
|||||
|
|
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 |
|||
|
|
|
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. |
||||
|
|
position: relative, and you never typeposition: static:) – thirtydot Feb 16 '11 at 0:42