在引导程序中显示容器外部的内容

时间:2014-07-24 07:13:27

标签: css twitter-bootstrap grid-layout fluid-layout

我有一个滑块,我需要将其内容放在bootstrap容器中。但是,我想将寻呼机放在容器外面。这是我的逻辑,但它不起作用。

<div class="container-fluid"><!-- a wrapper for the slider and its pager -->
<div class="pager">
my pager content
</div>
<div class="slidercontent container"><!-- so that the slider content fits within the container area with the normal margins-->
my slider content
</div>
</div>

enter image description here

1 个答案:

答案 0 :(得分:1)

CSS:

.pager{
    position:absolute;
    left:-50px;
}

虽然看不到你的代码......