首页 前端知识 Vue 设置v-html中元素样式

Vue 设置v-html中元素样式

2024-05-29 10:05:33 前端知识 前端哥 979 35 我要收藏

使用方式: <<< img { max-width: 100% }

如:要将v-html中的图片元素(img)的最大宽度设置为100%.

<template>
    <div >
        <div class="rtfDiv book" v-html="content">
        </div>
    </div>
</template>

<script>

    export default {
        name: 'RtfView',
        props: {
            content: {},
        },
        data() {
            return {
            }
        },       
    }

</script>

<style scoped>

    .rtfDiv >>> img {
        max-width: 100% ;
    }


    .rtfDiv {
        min-height: 700px;
        background-color: #fff;
        padding: 30px;
        margin : 15px 150px;
    }

</style>

转载请注明出处或者链接地址:https://www.qianduange.cn//article/9978.html
标签
评论
发布的文章

使用 mapstructure 解析 json

2024-06-05 13:06:03

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!