Bootstrap

使用fixed使元素固定在父元素的指定位置

虽然position:fixed是对于浏览器窗口定位的,但是只要不设置fixed元素的top,bottom,left,right,此时该元素就是相对于父元素进行定位的。如果要移动元素的位置,可以通过margin来实现

      .fixed {
        position: fixed;
        top: 65px;
        margin-left: 830px;
      }
;