Symbol meaning
=> : become setting of
1. display : none => no position, no float
2. display :
3. display : block AND float : none => top, bottom, left. right (use absolute position)
4. float :
4. => display
position : relative
means the latter item's position will be calculate by the former item +
top, bottom, left. right.
e.g.
the parent container of former item and latter item is at (10, 10)
former item at (100, 200)
latter-item {
position : relative;
top : 10px;
}
latter item will be at (110, 200)
However,
latter-item {
position : absolute
top : 10px;
}
latter item will be at (20, 10)
No comments:
Post a Comment