rich-text如何控制nodes里面img标签的宽度

发布于 7 年前作者 yan91609 次浏览最后编辑 7 年前来自 ask

rich-text如何控制nodes里面img标签的宽度,对外层设置宽度p标签有效,但img标签无效

4 回复
dfeng
dfeng2 楼6 年前

在你获取到后台传输的富文本字段时

做一下处理

replace(/\<img/gi,  '<img class="rich-img" ' );

就可以了

rich-text  .rich-img {

width: 100% ;

height: auto ;

}

junluo
junluo4 楼6 年前

意思是img标签里必须带有width属性,不能通过设置rich-text外层宽度实现?