2017-05-09 2 views
0

Gibt es eine Möglichkeit, die Bootstrap Karussell Beschriftung auf den untersten Teil des Bildes zu positionieren? CSS folgt:Carousel Caption Niedrigste Position

.carousel-caption { 
    max-width: 100%; 
    width:100%; 
    background:rgba(0,0,0,0.5); 
    position: absolute; 
    left: 0; 
} 
+0

Prüfung [w3School] (https://www.w3schools.com/bootstrap/bootstrap_carousel.asp) – Durga

+1

Haben Sie versucht, 'bottom: 0; '? – Swellar

Antwort

0

Sie können bottom:0px

.carousel-caption { 
    max-width: 100%; 
    width:100%; 
    background:rgba(0,0,0,0.5); 
    position: absolute; 
    left: 0; 
    bottom: 0px; 
}