2014-07-24 61 views
0

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

<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

请提供链接或捣鼓相同 – Husen

回答

1

CSS:

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

无法看到你的代码,但...