Vue更改v-html中CSS样式

Vue更改v-html中CSS样式

<div class="imgBox" v-html="helpInfo.content" style="padding-bottom:20px"></div>
其中v-html为img标签,有一张图片

元素样式为CSS写法

/*css*/
<style scoped>
.imgBox >>> img {
  max-width: 100%;
}
</style>

元素样式为less写法

/*less/scss*/
<style scoped lang="less">
/deep/ img {
    max-width: 100%;
  }
</style>
posted @ 2020-08-06 19:24  盼星星盼太阳  阅读(2244)  评论(0)    收藏  举报