Answers for "v-card-text center"

4

vuetify card title text center

class="justify-center" //add this to the v-card-title component

// v-card-title are flex components to the class 'text-center' will NOT work
// text-center only works inside the card itself
Posted by: Guest on May-11-2020
1

center text v-card

<v-card-title primary-title class="justify-center">
  <div>
    <h3 class="headline pink--text text--accent-2>Superdry</h3>
    <div>Rookie Aviator Patched BomberproductItem.description</div>
  </div>
</v-card-title>
<v-card-actions class="justify-center">
  <v-btn flat color="orange">Add to Cart</v-btn>
</v-card-actions>
Posted by: Guest on August-26-2021
2

v-card-text center

class="text-center //add this to v-card-text
Posted by: Guest on May-13-2020

Browse Popular Code Answers by Language