2014-07-24 60 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; 
} 

無法看到你的代碼,但...