2014-07-21 21 views

回答

1

默認情況下carousel caption在底部快到了,不知道爲什麼出現這種情況和你在一起,但

see this example

如果你想在任何特定的位置,以顯示你的文字比是對最好的方法使用position而不是margins

另外,您必須在Percentage而不是Pixel中設置該位置。所以,它會有反應。

使用carousel-caption類像以下:

.carousel-caption { 
    margin: 0px; 
    padding: 0px; 
    background: none; 
    top: 20%; 
    left: 30%;   
    position: absolute; 
} 
+0

非常感謝它果然奏效。我很高興它做到了。 – user3854435