In Vuetify.js, I want to display a one word text on the right side of a v-card image:
<v-card>
<v-img
rc="https://cdn.vuetifyjs.com/images/cards/desert.jpg"
aspect-ratio="2.75">
<span class="my-span">
Info
</span>
</v-img>
</v-card>
But this is the result I get:
Even if my-span says margin-right:0;:
.my-span {
background-color:blue;
color:white;
font-weight:bold;
margin-right:0;
}
How to fix this?
