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

时间:2015-04-07 20:24:12

标签: css css3 twitter-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>

1 个答案:

答案 0 :(得分:2)

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

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