在 Bootstrap 中设置绝对位置的问题 3

Issue on Setting Position Absolute in Bootstrap 3

你能看看this Demo并告诉我为什么我不能在第一行设置绝对位置吗?

谢谢

html, body { height: 100%;  }
.element{ position:absolute; top:0; }
.one{height:500px; background-color:red;}
.two{height:500px; background-color:blue;}

<div class="container">

<div class="row fixed-top">This mUst be absolute</div>

<div class="row one"></div>

<div class="row two"></div>

</div>

我想你的意思是你需要将元素固定在顶部。如果是,请尝试添加

.fixed-top  { position:fixed; top:0; }