【发布时间】:2021-06-08 14:35:38
【问题描述】:
我尝试使用class="text-wrap",但它不起作用:
<div>
<v-card max-width="1000" elevation="6">
<div class="mb-8 text-wrap">
<v-sheet dark color="grey darken-2" class="text-wrap">
<v-card-title
color="grey darken-2 white--text"
class="d-block font-weight-regular text-wrap">
{{ label }}
</v-card-title>
</v-sheet>
</div>
</v-card>
</div>
【问题讨论】:
-
尝试将
word-break: break-word;的内联样式添加到v-card-title -
CSS 中的样式!?我说的是
<v-card-title style="word-break: break-word;" ...
标签: javascript vue.js class vuetify.js word-wrap