Style:单词换行样式设置

This commit is contained in:
linxi
2025-06-05 10:53:08 +08:00
parent df500286e2
commit 1dfabc1697
+5 -2
View File
@@ -3,8 +3,8 @@
<view class="top-img">
<video class="top-img" :show-fullscreen-btn="false" autoplay play-btn-position="center" :src="details.video"></video>
</view>
<view class="v12-mt-2 v12-font-24">
{{ details.videoSource }}
<view class="v12-mt-2 v12-font-24 word-break-word">
{{ details.videoSource || '' }}
</view>
<view class="title-img">
<view class="img-wrap">
@@ -358,4 +358,7 @@ export default {
padding: 10rpx 60rpx;
box-sizing: border-box;
}
.word-break-word{
word-break: break-word;
}
</style>