固定定位元素一定是块盒,一定不是浮动
    其他情况和绝对定位完全一样
    包含块不同:固定为视口(浏览器的可视窗口)

    1. fixed(固定定位)
    2. 相对于文档居中定位
    3. div{
    4. position: fixed;
    5. left: 50%;
    6. top: 50%;
    7. width: 100px;
    8. height: 100px;
    9. background-color: red;
    10. margin-left: -50px;
    11. margin-top: -50px;
    12. }