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>


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM