Cannot center the div inside the v-carousel component.
<style scoped> .title { position: absolute; bottom: 50px; background-color: rgba(0, 0, 0, 0.5); color: white; font-size: 2em; padding: 30px; } </style> <v-layout row wrap class="mt-3"> <v-flex xs12> <v-carousel> <v-carousel-item v-for="meetup in meetups" :key="meetup.id" :src="meetup.imageURL"> <div class="title">{{ meetup.title }}</div> </v-carousel-item> </v-carousel> </v-flex> <v-flex class="text-xs-center mt-2"> <p>Welcome to our meetups!</p> </v-flex> </v-layout> 