vue v-html生成的富文本内容让里边的图片最大宽度为100% 电脑版发表于:2025/7/7 17:48 #### 这样生成的内容: ``` <div class="tc-blid-content" v-html="state.subProgram.context"></div> ``` #### 使用样式直接限制即可: 但是要注意不能写在scoped="scoped"里边,不然不得行 ``` <style lang="scss"> .teacher-training-details-container { .tc-blid-content img { max-width: 100% !important; } } </style> ```