ueditor 控制上传图片的显示尺寸
2021-07-03 06:05
标签:play frame height splay 文件 flow 上传图片 文件中 尺寸 使用UEditor的编辑框插入图片的时候,如果图片尺寸比较大,则图片会超出编辑器边框出现滚动条,特别不方便。 解决办法:在ueditor 的 themes 文件夹下有个iframe.css 文件,在该文件中添加如下代码即可解决(本人亲测): ueditor 控制上传图片的显示尺寸 标签:play frame height splay 文件 flow 上传图片 文件中 尺寸 原文地址:http://www.cnblogs.com/yinz/p/7125561.htmlimg {
max-width: 100%; /*图片自适应宽度*/
}
body {
overflow-y: scroll !important;
}
.view {
word-break: break-all;
}
.vote_area {
display: block;
}
.vote_iframe {
background-color: transparent;
border: 0 none;
height: 100%;
}
文章标题:ueditor 控制上传图片的显示尺寸
文章链接:http://soscw.com/index.php/essay/101135.html