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>