阻止bootstrap将div移动到左边

时间:2013-01-27 00:54:27

标签: css css3 twitter-bootstrap

在使用词缀属性后,我试图阻止我的右侧div移动到左侧。

任何iudea请我这样做。你可以在这里看到问题,请向下滚动: -

http://monkeygetnews.jonathanlyon.com/bs.html

由于

Jponathan

1 个答案:

答案 0 :(得分:9)

激活后,滚动间谍会将类词缀和位置固定添加到它正在侦察的div中。这种定位使得div脱离正常流动,结果是它向左浮动。

解决方案是添加一些CSS样式以将其浮动到您想要的位置。在你的页面中我认为它会是这样的:

.span3.affix{
position: fixed; /* to stop the div from scrolling */
top: 0;          /* to fix the div at the top its containing element */
right: 0;        /* to fix the div at the right of its containing element */
}

您可能需要稍微玩一下才能达到您想要的位置。重要的是,一旦你知道选择器(在这种情况下)是.span3.affix它很容易使用。

祝你好运!